Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mukul975 avatar

Analyzing Tls Certificate Transparency Logs

  • 231 installs
  • 27.3k repo stars
  • Updated August 2, 2026
  • mukul975/anthropic-cybersecurity-skills

Investigate Certificate Transparency logs to spot mis-issued or suspicious TLS certs for your domains and dependencies.

About

analyzing-tls-certificate-transparency-logs is a security-focused agent skill from an Anthropic-oriented cybersecurity skills collection, aimed at helping builders query and interpret CT logs to find certificates issued for names you control—or names attackers might typosquat. Solo founders rarely have a dedicated security team, yet a single unexpected cert can signal DNS takeover, compromised panel, or a sloppy subdomain spray. Invoke this when you are hardening Ship checks or doing periodic Operate sweeps, not when you only need local dev HTTPS with mkcert. Prism ingestion may not yet include the full procedural body; treat the skill name and repo theme as the capability contract until richer SKILL.md lands.

  • Cybersecurity skill oriented to TLS Certificate Transparency log analysis
  • Supports threat hunting for rogue or mis-scoped certificates
  • Fits domain and infra verification during launch and operate reviews

Analyzing Tls Certificate Transparency Logs by the numbers

  • 231 all-time installs (skills.sh)
  • +11 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #719 of 2,203 Security skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/mukul975/anthropic-cybersecurity-skills --skill analyzing-tls-certificate-transparency-logs

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs231
repo stars27.3k
Security audit2 / 3 scanners passed
Last updatedAugust 2, 2026
Repositorymukul975/anthropic-cybersecurity-skills

What it does

Investigate Certificate Transparency logs to spot mis-issued or suspicious TLS certs for your domains and dependencies.

Files

SKILL.mdMarkdownGitHub ↗

Analyzing TLS Certificate Transparency Logs

When to Use

  • When investigating security incidents that require analyzing tls certificate transparency logs
  • When building detection rules or threat hunting queries for this domain
  • When SOC analysts need structured procedures for this analysis type
  • When validating security monitoring coverage for related attack techniques

Prerequisites

  • Familiarity with security operations concepts and tools
  • Access to a test or lab environment for safe execution
  • Python 3.8+ with required dependencies installed
  • Appropriate authorization for any testing activities

Instructions

Query crt.sh Certificate Transparency database to find certificates issued for domains similar to your organization's brand, detecting phishing infrastructure.

from pycrtsh import Crtsh

c = Crtsh()
# Search for certificates matching a domain
certs = c.search("example.com")
for cert in certs:
    print(cert["id"], cert["name_value"])

# Get full certificate details
details = c.get(certs[0]["id"], type="id")

Key analysis steps: 1. Query crt.sh for all certificates matching your domain pattern 2. Identify certificates with typosquatting variations (Levenshtein distance) 3. Flag certificates from unexpected CAs 4. Monitor for wildcard certificates on suspicious subdomains 5. Cross-reference with known phishing infrastructure

Examples

from pycrtsh import Crtsh
c = Crtsh()
certs = c.search("%.example.com")
for cert in certs:
    print(f"Issuer: {cert.get('issuer_name')}, Domain: {cert.get('name_value')}")

Related skills

FAQ

Is Analyzing Tls Certificate Transparency Logs safe to install?

skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

Securityappseccompliance

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.