abusing-dpapi-for-cred…
Extract and decrypt Windows DPAPI-protected secrets (Credential Manager, browser logins/cookies, Wi-Fi credentials, KeePass keys) online or offline using…
Collects and synthesizes open-source intelligence (OSINT) about threat
$ npx -y skills add mukul975/Anthropic-Cybersecurity-Skills --skill collecting-open-source-intelligence --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/collecting-open-source-intelligenceContext preview
The summary Claude sees to decide when to auto-load this skill.
Collects and synthesizes open-source intelligence (OSINT) about threat
name: collecting-open-source-intelligence description: 'Collects and synthesizes open-source intelligence (OSINT) about threat actors, malicious infrastructure, and attack campaigns using publicly available data sources, passive reconnaissance tools, and dark web monitoring. Use when investigating external threat actor infrastructure, performing pre-engagement reconnaissance for authorized red team assessments, or enriching CTI reports with publicly available adversary context. Activates for requests involving Maltego, Shodan, OSINT framework, SpiderFoot, or infrastructure reconnaissance. ' domain: cybersecurity subdomain: threat-intelligence tags: - OSINT - Maltego - Shodan - Recon-ng - SpiderFoot - threat-intelligence - ATT&CK-T1591 - NIST-CSF version: 1.0.0 author: mahipal license: Apache-2.0 nist_csf: - ID.RA-01 - ID.RA-05 - DE.CM-01 - DE.AE-02 mitre_attack: - T1593.001 - T1589.002 - T1596.002 - T1590 - T1596.001
Use this skill when:
**Do not use** this skill for active scanning against targets without explicit written authorization — OSINT collection must remain passive (no packets sent to target systems) unless scope permits active recon.
Establish the intelligence requirement (IR) before collecting. Document:
# Passive DNS via SecurityTrails API curl "https://api.securitytrails.com/v1/domain/evil-domain.com/dns/a" \ -H "apikey: YOUR_KEY" # WHOIS history via ARIN / RIPE whois -h whois.arin.net evil-domain.com # Certificate transparency logs (no API key required) curl "https://crt.sh/?q=%.evil-domain.com&output=json" | jq '.[].name_value'
Certificate transparency logs reveal all subdomains for a target domain, often exposing staging, VPN, or internal infrastructure inadvertently made public.
import shodan
api = shodan.Shodan("YOUR_SHODAN_API_KEY")
# Search for specific C2 framework signatures (Cobalt Strike beacon)
results = api.search('product:"Cobalt Strike" port:443')
for r in results['matches']:
print(r['ip_str'], r['port'], r['org'], r.get('ssl', {}).get('cert', {}).get('subject', ''))
# Find infrastructure associated with a known threat actor's ASN
results = api.search('asn:AS12345 http.title:"Redirector"')Correlate Shodan results with passive DNS to build infrastructure clusters.
In Maltego, use these built-in transforms for threat actor infrastructure mapping: 1. Start with a known malicious domain (Entity: Domain) 2. Run "To IP Address [DNS]" → identifies hosting IPs 3. Run "To Shared Hosting" → identifies co-hosted domains (potentially same threat actor) 4. Run "To DNS Name [Reverse DNS]" → identifies PTR records 5. Run "To Whois" → identifies registrant email/organization 6. Pivot on registrant email → "To Domains [Registrant Email]" → expands to all domains registered with same email
Maltego Maltego Cyber threat intelligence transforms (VirusTotal, Shodan, PassiveTotal, URLScan) extend graph coverage.
Use SpiderFoot HX or manual searches for:
# SpiderFoot CLI for automated OSINT python sf.py -s evil-domain.com -m sfp_shodan,sfp_virustotal,sfp_passivetotal \ -o TF -R result.json
| Term | Definition | |------|-----------| | **Passive OSINT** | Intelligence collection that does not send any packets to target systems — uses public databases, search engines, cached data | | **PIR** | Priority Intelligence Requirement — specific question the intelligence collection must answer, preventing unfocused data gathering | | **Certificate Transparency** | Public log of all SSL/TLS certificates issued by CAs, enabling discovery of subdomains via crt.sh | | **Pivoting** | Using one data point (IP, email, registrant name) to discover related infrastructure or accounts | | **ASN** | Autonomous System Number — block of IP addresses under a single routing policy; useful for clustering threat actor infrastructure | | **Co-hosted Domains** | Multiple domains resolving to the same IP, potentially indicating shared attacker infrastructure |
817 structured cybersecurity skills for AI agents · Mapped to 6 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND, NIST AI RMF & MITRE F3 (Fight Fraud) · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platforms · 29 security domains · Apache 2.0
Repo: mukul975/Anthropic-Cybersecurity-Skills
Extract and decrypt Windows DPAPI-protected secrets (Credential Manager, browser logins/cookies, Wi-Fi credentials, KeePass keys) online or offline using…
Take over Active Directory accounts by writing attacker-controlled public keys to msDS-KeyCredentialLink (Shadow Credentials) with pyWhisker, Whisker, or…
Prepare a defense-contractor environment for CMMC Level 2 certification: scope CUI and FCI, implement the 110 NIST SP 800-171 Rev 2 security requirements…
Create forensically sound bit-for-bit disk images with dd or dcfldd on a Linux forensic workstation, preserving evidence integrity through hash verification…
Detect dangerous ACL misconfigurations in Active Directory using ldap3
Perform static analysis of Android APK malware using apktool for resource decompilation, jadx for Java source recovery, and androguard for manifest inspection,…