Zum Hauptinhalt springen
tsecurity.de LIVE
Echtzeit-Radar & Feeds
Alle RSS Feeds
👥 Community & Social
Sichere ProgrammierungLandlock LSM: Sandbox-Linux ohne Root-Rechte sichern(22.09.2026 um 02:00 Uhr)
Sichere ProgrammierungQuarkus + GraalVM Advanced Obfuscation(22.09.2026 um 02:00 Uhr)
Sichere Programmierung06 — Chat Works. Does the Agent Actually Retrieve Memory?(22.09.2026 um 02:03 Uhr)
Sichere ProgrammierungMCP Debate: Token Tax, Context Bloat, and What Devs Can Do(22.09.2026 um 02:03 Uhr)
Sichere ProgrammierungI gave my AI agent a kill switch tied to its own bank balance(22.09.2026 um 02:08 Uhr)
Sichere ProgrammierungLandlock LSM: Sandbox-Linux ohne Root-Rechte sichern(22.09.2026 um 02:00 Uhr)
Sichere ProgrammierungQuarkus + GraalVM Advanced Obfuscation(22.09.2026 um 02:00 Uhr)
Sichere Programmierung06 — Chat Works. Does the Agent Actually Retrieve Memory?(22.09.2026 um 02:03 Uhr)
Sichere ProgrammierungMCP Debate: Token Tax, Context Bloat, and What Devs Can Do(22.09.2026 um 02:03 Uhr)
Sichere ProgrammierungI gave my AI agent a kill switch tied to its own bank balance(22.09.2026 um 02:08 Uhr)
Intelligence View
⚡ tsecurity.de Intelligence

crt.sh Has a Free API — Find Every SSL Certificate for Any Domain

Certificate Transparency logs record every SSL/TLS certificate ever issued. crt.sh gives you free access to search them all — and discover subdomains that even the domain owner forgot about. No API key. No rate limits. Just add ?…

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

Certificate Transparency logs record every SSL/TLS certificate ever issued. crt.sh gives you free access to search them all — and discover subdomains that even the domain owner forgot about.



No API key. No rate limits. Just add ?output=json\ to any query.






Why This Matters



A bug bounty hunter was testing a company's web application. The main site was hardened. But when they searched crt.sh for the company's certificates, they found 47 subdomains — including staging.company.com\, dev-api.company.com\, and old-admin.company.com\. The staging server had default credentials.



Certificate Transparency reveals your entire attack surface.






The Simplest API You'll Ever Use



\`python

import requests



def find_subdomains(domain):

"""Find all subdomains via Certificate Transparency logs."""




response = requests.get(
f"https://crt.sh/?q=%25.{domain}&output=json",
timeout=30
)

if response.status_code == 200:
certs = response.json()

# Extract unique subdomains
subdomains = set()
for cert in certs:
name = cert.get("name_value", "")
for line in name.split("\n"):
line = line.strip().lower()
if line and "*" not in line:
subdomains.add(line)

subdomains = sorted(subdomains)

print(f"Domain: {domain}")
print(f"Certificates found: {len(certs)}")
print(f"Unique subdomains: {len(subdomains)}")

for sub in subdomains[:20]:
print(f" {sub}")

if len(subdomains) > 20:
print(f" ... and {len(subdomains) - 20} more")

return subdomains






Find all subdomains for a domain



find_subdomains("github.com")

`\





Certificate History



See every certificate ever issued for a domain:



\`python

def cert_history(domain):

"""Get certificate issuance history."""



response = requests.get(
f"https://crt.sh/?q={domain}&output=json",
timeout=30
)

if response.status_code == 200:
certs = response.json()

print(f"Total certificates for {domain}: {len(certs)}")

# Sort by most recent
certs.sort(key=lambda c: c.get("not_before", ""), reverse=True)

for cert in certs[:10]:
issuer = cert.get("issuer_name", "Unknown")
not_before = cert.get("not_before", "?")
not_after = cert.get("not_after", "?")

# Extract issuer organization
issuer_org = "Unknown"
if "O=" in issuer:
issuer_org = issuer.split("O=")[1].split(",")[0]

print(f"\n Issued: {not_before}")
print(f" Expires: {not_after}")
print(f" Issuer: {issuer_org}")
print(f" ID: {cert.get('id', '?')}")




cert_history("example.com")

`\






Monitor New Certificates



\`python

from datetime import datetime, timedelta



def monitor_new_certs(domain, days=7):

"""Find certificates issued in the last N days."""




response = requests.get(
f"https://crt.sh/?q=%25.{domain}&output=json",
timeout=30
)

if response.status_code == 200:
certs = response.json()
cutoff = (datetime.now() - timedelta(days=days)).strftime("%Y-%m-%d")

recent = [c for c in certs if c.get("not_before", "") >= cutoff]

print(f"New certificates for *.{domain} in last {days} days: {len(recent)}")

for cert in recent[:10]:
name = cert.get("name_value", "?").split("\n")[0]
issued = cert.get("not_before", "?")
issuer = cert.get("issuer_name", "")

issuer_short = "Unknown"
if "O=" in issuer:
issuer_short = issuer.split("O=")[1].split(",")[0]

print(f" {issued} | {name} | {issuer_short}")




monitor_new_certs("google.com", days=3)

`\






Detect Phishing Domains



\`python

def find_lookalikes(brand):

"""Find certificates for domains that look like a brand (phishing detection)."""




response = requests.get(
f"https://crt.sh/?q=%25{brand}%25&output=json",
timeout=30
)

if response.status_code == 200:
certs = response.json()

# Extract unique domains
domains = set()
for cert in certs:
for name in cert.get("name_value", "").split("\n"):
name = name.strip().lower()
if name and brand.lower() in name and "*" not in name:
domains.add(name)

# Filter out the real domain
suspicious = [d for d in sorted(domains) if not d.endswith(f".{brand}.com")]

print(f"Potential lookalike domains for '{brand}': {len(suspicious)}")
for d in suspicious[:15]:
print(f" ⚠ {d}")




find_lookalikes("paypal")

`\






What You Can Build





  • Subdomain enumeration — discover the full attack surface


  • Certificate monitoring — alert on unauthorized cert issuance


  • Phishing detection — find lookalike domains abusing your brand


  • Compliance audit — verify all certs are from approved CAs


  • Bug bounty recon — find forgotten subdomains with weak security



Zero cost. Zero authentication. The most underrated OSINT tool.






More free security APIs on my GitHub.

Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten crt.sh Has a Free API — Find Every SSL Certificate for Any Domain

Thematisch verwandte Begriffe: crtsh, Free, Find, Every · 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-49449 | Joplin is an open source note-taking and to-do application that organise…
Advisory →
TTS Reader • tsecurity.de Voice
tsecurity.de Icon
tsecurity.de App
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
🔖 Gespeicherte Artikel
📂 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 ⏱️ 3 Min vor 10 Min
Artikeldaten werden geladen...

Zurück: vorheriger Vor: nächster
↗ Original-Quelle
Social Reaktionen Deine Reaktion zählt
Einstufung & Relevanz-Poll 0 Stimmen
In sozialen Netzwerken teilen 1-Klick