acquiring-disk-image-w…
Create forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through
Queries Certificate Transparency logs via crt.sh and pycrtsh to detect phishing domains, unauthorized certificate
$ npx -y skills add Mikaru0Mystic/sectinel --skill analyzing-tls-certificate-transparency-logs --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/analyzing-tls-certificate-transparency-logsContext preview
The summary Claude sees to decide when to auto-load this skill.
Queries Certificate Transparency logs via crt.sh and pycrtsh to detect phishing domains, unauthorized certificate
name: analyzing-tls-certificate-transparency-logs description: 'Queries Certificate Transparency logs via crt.sh and pycrtsh to detect phishing domains, unauthorized certificate issuance, and shadow IT. Monitors newly issued certificates for typosquatting and brand impersonation using Levenshtein distance. Use for proactive phishing domain detection and certificate monitoring. ' domain: cybersecurity subdomain: security-operations tags: - analyzing - tls - certificate - transparency version: '1.0' author: mahipal license: Apache-2.0 atlas_techniques: - AML.T0073 - AML.T0052 nist_csf: - DE.CM-01 - RS.MA-01 - GV.OV-01 - DE.AE-02
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
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')}")Open-source security arsenal for AI coding agents: 784 cybersecurity skills, scanner integrations, and a security MCP for Claude Code, Cursor, opencode, Gemini CLI, Cline, and any agentskills.io agent. Mapped to OWASP, MITRE ATT&CK, NIST CSF, D3FEND, ATLAS.
Repo: Mikaru0Mystic/sectinel
Create forensically sound bit-for-bit disk images using dd and dcfldd while preserving evidence integrity through
Detect dangerous ACL misconfigurations in Active Directory using ldap3 to identify GenericAll, WriteDACL, and
Perform static analysis of Android APK malware samples using apktool for decompilation, jadx for Java source
Parses API Gateway access logs (AWS API Gateway, Kong, Nginx) to detect BOLA/IDOR attacks, rate limit bypass,
Analyze advanced persistent threat (APT) group techniques using MITRE ATT&CK Navigator to create layered heatmaps
Queries Azure Monitor activity logs and sign-in logs via azure-monitor-query to detect suspicious administrative