agentsclimarketplace

Censys api

Skill Liberty91LTD/cti-skills/skills/censys-api

Censys API v2 reference. Host reconnaissance and certificate data.From its SKILL.md

Install
npx -y skills add Liberty91LTD/cti-skills --skill censys-api

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

4 things to look at

  • reads credentialsReads from 2 credential sources: `$CENSYS_API_ID` and 1 more.
  • 16 stars16 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
  • runs commandsInstructs the agent to run 3 commands, including `curl -s "https://search.censys.io/api/v2/hosts/{ip}" -u "$CENSYS_API_ID:$CENSYS_API_SECRET"` and 2 more.
  • fetches URLsInstructs the agent to fetch 3 URLs, including https://search.censys.io/api/v2/hosts/{ip} and 2 more.

SKILL.md

2.3 KB, 624 tokens by cl100k_base, as published. Nobody here has run it

Censys API v2

Base URL

https://search.censys.io/api/v2

Authentication

Basic Auth: $CENSYS_API_ID:$CENSYS_API_SECRET

curl -s "https://search.censys.io/api/v2/hosts/{ip}" \
  -u "$CENSYS_API_ID:$CENSYS_API_SECRET"

Rate Limits

  • Free: 250 queries/month, 5 results/query
  • Paid: Higher limits based on plan

Important: Free tier is very limited. Use selectively — prioritise high-value lookups.

Key Endpoints

View Host

curl -s "https://search.censys.io/api/v2/hosts/{ip}" \
  -u "$CENSYS_API_ID:$CENSYS_API_SECRET"

Useful fields:

  • result.services[] — port, service_name, transport_protocol, banner
  • result.services[].tls.certificates — TLS certificate chain
  • result.autonomous_system — ASN info
  • result.location — geographic location
  • result.operating_system — OS detection
  • result.last_updated_at — scan freshness

Search Hosts

curl -s "https://search.censys.io/api/v2/hosts/search?q={query}" \
  -u "$CENSYS_API_ID:$CENSYS_API_SECRET"

Search syntax: services.port: 443 AND services.tls.certificates.leaf_data.subject.common_name: example.com

View Certificate

curl -s "https://search.censys.io/api/v2/certificates/{fingerprint}" \
  -u "$CENSYS_API_ID:$CENSYS_API_SECRET"

Common Search Queries

  • ip: {ip} — specific host
  • services.tls.certificates.leaf_data.subject.common_name: {domain} — hosts with cert for domain
  • services.http.response.body_hash: {hash} — hosts serving same content
  • services.jarm.fingerprint: {jarm} — hosts with same JARM fingerprint (C2 detection)
  • labels: {label} — Censys-labeled hosts

CTI Value

Censys excels at:

  • Certificate transparency analysis (finding related infrastructure)
  • JARM fingerprinting (identifying C2 frameworks)
  • Service banner analysis
  • Historical infrastructure changes

Response Summary Format

ip: <IP>
services:
  - port: <port>
    service: <name>
    banner: <truncated>
certificates:
  - subject_cn: <common name>
    issuer: <issuer>
    valid_from: <date>
    valid_to: <date>
autonomous_system:
  asn: <number>
  name: <name>
location:
  country: <country>
  city: <city>
last_updated: <date>

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.