Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Censys lookups: hosts, certificates, services on the public internet
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 105% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 115% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 160% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 136% | 0% |
| case-10 | ✗→✓ | ▲ Improved | 6% | 0% |
Censys continuously scans the public internet and indexes detailed metadata about every reachable host: open ports, running services, TLS certificates, and BGP routing information. Complementary to Shodan with different scanner vantage points and richer certificate data.
Requires: CENSYS_API_ID and CENSYS_API_SECRET — free tier at https://search.censys.io/register (0.4 req/sec, 250 queries/month).
powershell$ip = "8.8.8.8" $id = $env:CENSYS_API_ID $secret = $env:CENSYS_API_SECRET $b64 = [Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes("${id}:${secret}")) $headers = @{ Authorization = "Basic $b64" } $result = Invoke-RestMethod -Uri "https://search.censys.io/api/v2/hosts/$ip" -Headers $headers $r = $result.result Write-Host "IP: $($r.ip)" Write-Host "AS: $($r.autonomous_system.name) (ASN $($r.autonomous_system.asn))" Write-Host "Country: $($r.location.country)" Write-Host "Open ports:" $r.services | ForEach-Object { Write-Host " $($_.port)/$($_.transport_protocol) — $($_.service_name)" }
powershell$query = "services.service_name: HTTP and location.country_code: IN" $b64 = [Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes("$($env:CENSYS_API_ID):$($env:CENSYS_API_SECRET)")) $headers = @{ Authorization = "Basic $b64" } $encoded = [Uri]::EscapeDataString($query) $result = Invoke-RestMethod -Uri "https://search.censys.io/api/v2/hosts/search?q=$encoded" -Headers $headers Write-Host "Total matches: $($result.result.total)" $result.result.hits | Select-Object -First 10 | ForEach-Object { Write-Host " $($_.ip) — $($_.autonomous_system.name) ($($_.location.country_name))" }
powershell$sha256 = "YOUR_CERT_SHA256_HERE" $b64 = [Convert]::ToBase64String([Text.Encoding]::UTF8.GetBytes("$($env:CENSYS_API_ID):$($env:CENSYS_API_SECRET)")) $headers = @{ Authorization = "Basic $b64" } $result = Invoke-RestMethod -Uri "https://search.censys.io/api/v2/certificates/$sha256" -Headers $headers $parsed = $result.result.parsed Write-Host "Subject: $($parsed.subject_dn)" Write-Host "Issuer: $($parsed.issuer_dn)" Write-Host "Valid: $($parsed.validity.start) → $($parsed.validity.end)" Write-Host "SANs: $($parsed.names_from_san -join ', ')"
"What is exposed on IP 1.2.3.4?" → Host lookup: returns open ports, service names, ASN, and location.
"Find all exposed Redis servers in Germany" → Query: services.service_name: REDIS and location.country_code: DE
"Who else uses this TLS certificate?" → Certificate lookup by SHA-256 fingerprint — shows SAN names and validity.
"Show me all hosts in ASN 15169" → Query: autonomous_system.asn: 15169
Start-Sleep -Milliseconds 2500CENSYS_API_ID and CENSYS_API_SECRET — free account at https://search.censys.io/registerOther measured skills in the registry, with their headline benchmark lift.