Zum Hauptinhalt springen
Echtzeit-Radar & Feeds
Alle RSS Feeds ➔
👥 Community & Social
YouTube Security VideosTechLinked: Samsung update BRICKS AI fridges(24.09.2026 um 19:36 Uhr)
•
YouTube Security VideosXDA: This Windows version was never supposed to exist(24.09.2026 um 19:15 Uhr)
•
YouTube Security VideosAndroid Police: The best smartwatch's biggest problem.(24.09.2026 um 19:30 Uhr)
••
YouTube Security VideosLinus Tech Tips: leaking the newest lttstore products...(24.09.2026 um 18:25 Uhr)
•••
YouTube Security VideosImpeller hits desktop by default in Flutter 3.47! 🖥️(24.09.2026 um 18:00 Uhr)
•
Sichere ProgrammierungChrome for Developers: 93: State queries in 2025(24.09.2026 um 20:02 Uhr)
•
YouTube Security Videosdotnet: .NET + Foundry, better together(24.09.2026 um 18:35 Uhr)
•
YouTube Security VideosTechLinked: Samsung update BRICKS AI fridges(24.09.2026 um 19:36 Uhr)
•
YouTube Security VideosXDA: This Windows version was never supposed to exist(24.09.2026 um 19:15 Uhr)
•
YouTube Security VideosAndroid Police: The best smartwatch's biggest problem.(24.09.2026 um 19:30 Uhr)
••
YouTube Security VideosLinus Tech Tips: leaking the newest lttstore products...(24.09.2026 um 18:25 Uhr)
•••
YouTube Security VideosImpeller hits desktop by default in Flutter 3.47! 🖥️(24.09.2026 um 18:00 Uhr)
•
Sichere ProgrammierungChrome for Developers: 93: State queries in 2025(24.09.2026 um 20:02 Uhr)
•
YouTube Security Videosdotnet: .NET + Foundry, better together(24.09.2026 um 18:35 Uhr)
•
Intelligence View
⚡ tsecurity.de Intelligence

Censys Has a Free API — The Shodan Alternative for Internet-Wide Scanning

Everyone knows Shodan. But Censys is the quiet alternative that security researchers often prefer — and it has a generous free API tier. Censys scans the entire IPv4 address space and indexes every TLS certificate. 400 million+ hosts. 7 b…

0
↗ Quelle (dev.to)
Reagiere als Erste:r — dein Feedback zählt!

Everyone knows Shodan. But Censys is the quiet alternative that security researchers often prefer — and it has a generous free API tier.



Censys scans the entire IPv4 address space and indexes every TLS certificate. 400 million+ hosts. 7 billion+ certificates. Updated continuously.






Why Censys Over Shodan?



A security team needed to find all instances of a specific TLS certificate across the internet — a certificate that had been compromised. Shodan couldn't search by certificate fingerprint effectively. Censys found 2,400 hosts using that exact cert in under 3 seconds.



Each tool has strengths. Censys excels at certificate intelligence and structured queries.






Get Your Free API Key




  1. Sign up at search.censys.io

  2. Go to Account → API → get your API ID and Secret

  3. Free tier: 250 queries/month






Search for Hosts



\`python

import requests

from requests.auth import HTTPBasicAuth



API_ID = "your-api-id"

API_SECRET = "your-api-secret"

auth = HTTPBasicAuth(API_ID, API_SECRET)



def search_hosts(query, per_page=5):

"""Search for hosts matching a Censys query."""




response = requests.get(
"https://search.censys.io/api/v2/hosts/search",
params={"q": query, "per_page": per_page},
auth=auth,
timeout=30
)

data = response.json()
total = data["result"]["total"]
print(f"Query: {query}")
print(f"Total hosts: {total:,}")

for hit in data["result"]["hits"]:
ip = hit["ip"]
services = [f"{s['port']}/{s.get('service_name','?')}" for s in hit.get("services", [])]
location = hit.get("location", {})
country = location.get("country", "Unknown")

print(f"\n {ip} ({country})")
print(f" Services: {', '.join(services)}")

# Autonomous system info
asn = hit.get("autonomous_system", {})
if asn:
print(f" ASN: {asn.get('asn', '?')} — {asn.get('name', '?')}")






Find exposed Elasticsearch instances



search_hosts("services.service_name: ELASTICSEARCH")

`\





Look Up a Specific Host



\`python

def lookup_host(ip):

"""Get detailed information about a specific IP."""



response = requests.get(
f"https://search.censys.io/api/v2/hosts/{ip}",
auth=auth,
timeout=30
)

if response.status_code == 200:
host = response.json()["result"]

print(f"IP: {host['ip']}")
print(f"Last updated: {host.get('last_updated_at', '?')}")

for service in host.get("services", []):
port = service["port"]
name = service.get("service_name", "Unknown")
transport = service.get("transport_protocol", "TCP")

print(f"\n Port {port}/{transport}: {name}")

# TLS certificate info
tls = service.get("tls", {})
if tls:
cert = tls.get("certificates", {}).get("leaf", {})
if cert:
subject = cert.get("subject_dn", "?")
issuer = cert.get("issuer_dn", "?")
print(f" TLS Subject: {subject}")
print(f" TLS Issuer: {issuer}")




lookup_host("1.1.1.1")

`\






Search Certificates



This is where Censys really shines — certificate transparency search:



\`python

def search_certificates(query, per_page=5):

"""Search the certificate transparency logs."""





response = requests.get(

"https://search.censys.io/api/v2/certificates/search",

params={"q": query, "per_page": per_page},

auth=auth,

timeout=30

)

data = response.json()



for cert in data["result"]["hits"]:

fp = cert.get("fingerprint_sha256", "?")[:16]

names = cert.get("names", [])[:3]

issuer = cert.get("issuer_dn", "?")



print(f"  {fp}... | Names: {', '.join(names)} | Issuer: {issuer}")













Find all certificates for a domain



search_certificates("names: example.com")






Find certificates issued by Let's Encrypt



search_certificates("issuer_dn: \"Let's Encrypt\"")

`\






Censys vs Shodan











































Feature Censys Shodan
Free queries/month 250 ~100 search credits
Certificate search Excellent Limited
Query language SQL-like, powerful Simple filters
Data freshness Continuous Daily
IPv6 support Yes Limited
Price (paid) $25/mo $59/mo





What You Can Build





  • Certificate monitoring — alert when new certs are issued for your domains


  • Attack surface mapping — find all your organization's public services


  • Threat hunting — track malicious infrastructure by certificate patterns


  • Compliance scanning — ensure all services use valid TLS


  • Shadow IT detection — find unauthorized services in your IP ranges






Rate Limits




























Tier Queries/Month Results/Query
Free 250 100
Researcher 2,500 1,000
Teams Custom Custom


250 queries per month is enough for personal projects and small-scale security research.






More free security APIs and developer tools on my GitHub.

IoC Intelligence (1 Indikatoren)
1[.]1[.]1[.]1
CTI Threat Relationship Graph3 Knoten / 2 Relationen
CVE / Incident Software MITRE ATT&CK CWE Weakness IoC
SOC Incident Playbook: Vulnerability Remediation & Verification
title: Detect Exploitation - Censys Has a Free API — The Shodan Alternative for Internet-Wide Scanning
id: 10d480b7-049e-43d3-95b6-a18ef9459f3a
status: experimental
description: Automatisch generierte SIEM-Erkennungsregel basierend auf CTI Intelligence
references:
  - https://tsecurity.de/
author: iShareStuff CTI Automated Detection Engine
date: 2026-09-24
logsource:
  category: network_connection
  product: any
detection:
  selection:
      DestinationIp:
        - '1.1.1.1'
  condition: selection
falsepositives:
  - Legitime administrative Zugriffe oder Penetrationstests
level: high
tags:
  - attack.initial_access
rule CTI_Threat_Indicator {
    meta:
        author = "iShareStuff CTI Automated Detection Engine"
        date = "2026-09-24"
        description = "YARA Signature for "
    strings:
        $str = "Censys Has a Free API — The Sh" ascii wide
    condition:
        any of them
}
tsecurity.de Cognitive Threat RAG
Fokus-Vektor:

Kognitive Analyse für identifizierte Bedrohung: Erhöhte Bedrohungslage im Bereich Censys Has a Free API — The Shodan Alter.... Basierend auf 368k Vektor-Korrelationen werden sofortige Isolationsmaßnahmen für betroffene Endpunkte empfohlen.

🛡️ Angriffsfläche & Exposure

Netzwerk/Remote-Zugriff ohne Vorauthentifizierung möglich.

⚡ Empfohlene Sofortmaßnahmen
  • 1. Perimeter-Inspektion: Relevante Portfreigaben und exponierte Endpunkte unverzüglich scannen.
  • 2. Patch-Applikation: Hersteller-Hotfix einspielen oder betroffene Daemons in isolierte DMZ-Segmente überführen.
  • 3. Telemetrie & EDR-Alerts: Prozessaufrufe und Child-Processes auf anomale Shell-Spawns überwachen.
🔗 Semantisch verwandte Zero-Days MariaDB 11.7 VEC
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Censys Has a Free API — The Shodan Alternative for Internet-Wide Scanning

Thematisch verwandte Begriffe: Censys, Free, Shodan, Alternative · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Zum Aktualisieren ziehen
ZERO-DAY CVE-2026-57175 | Python Social Auth is a social authentication/registration mechanism. Pr…
Advisory →
tsecurity.de Icon
Offline-Lesen, Eilmeldungen & 0ms Ladezeit

Installiere tsecurity.de direkt auf deinen Home-Bildschirm für das ultimative Vollbild-Magazinerlebnis ohne Browser-Leisten.

Nächster Beitrag
Themen-Radar & Intelligence Matrix
Echtzeit-Taxonomie nach Angriffsvektoren & Plattformen

tsecurity.de Live Threat Radar

🔴 LIVE RADAR
MONITORING
AKTIV
CVE-DATENBANK
LIVE
🔍
Community Radar & Live Chat
Sentinel Bot online • Live-Stream
Dein Cluster: Security Explorer
Match:
lädt…
Verbindung zum Community-Stream wird aufgebaut...
Bearbeitungsmodus — Senden überschreibt deine Nachricht
Community-Puls — was gerade passiert
lädt…
Aktivitäten deiner Analysten
lädt…
Neues Thema oder Eilmeldung einreichen

Reiche interessante Links, Zero-Days oder Debatten ein. Die Community entscheidet per Upvote über die Veröffentlichung.

Heiß diskutierte Einreichungen
📂 Keine gespeicherten Artikel vorhanden.
Zurück Ziehen Vor
Links: vorheriger Artikel • Rechts: nächster Artikel • unten: schließen
News NIS-2 Frühwarnung Tier-1 Intel TTP ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...
↗ Original-Quelle