Add folder anatomy (scripts/agent.py + references/api-reference.md) for 648 cybersecurity skills

Complete skill folder anatomy across all cybersecurity skills:
- scripts/agent.py: 80-150 line Python agents using real libraries (impacket,
  boto3, azure-mgmt-*, kubernetes, pefile, yara, scapy, shodan, stix2, etc.)
- references/api-reference.md: real API documentation with method signatures
- LICENSE: MIT license for all skill folders
This commit is contained in:
mukul975
2026-03-10 21:02:12 +01:00
parent c74d52fa30
commit 27c6414ca5
1390 changed files with 106806 additions and 0 deletions
@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2025 Anthropic Agent Skills Contributors
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
@@ -0,0 +1,51 @@
# API Reference: OSINT Collection Agent
## Overview
Gathers open-source intelligence on target domains using Shodan, certificate transparency logs (crt.sh), RDAP WHOIS, SecurityTrails, and GitHub code search. For authorized assessments only.
## Dependencies
| Package | Version | Purpose |
|---------|---------|---------|
| shodan | >=1.28 | Shodan API for internet-wide device search |
| requests | >=2.28 | HTTP API calls |
## CLI Usage
```bash
python agent.py --domain example.com --shodan-key <key> --github-token <token> --output report.json
```
## Key Functions
### `search_shodan(api_key, query, max_results)`
Searches Shodan for hosts matching a query string, returning IP, ports, org, OS, SSL cert subjects.
### `shodan_host_lookup(api_key, ip_address)`
Looks up detailed information about a specific IP including open ports and known vulnerabilities.
### `query_crtsh(domain)`
Queries certificate transparency logs via crt.sh to discover subdomains from issued SSL certificates.
### `whois_lookup(domain)`
Performs WHOIS lookup using RDAP protocol, returning registration status, nameservers, and event dates.
### `query_securitytrails(api_key, domain)`
Queries SecurityTrails API for current DNS records, historical DNS data, and Alexa ranking.
### `search_github_exposure(query, github_token)`
Searches GitHub for exposed credentials, API keys, or sensitive data related to the target domain.
### `generate_osint_report(domain, subdomains, shodan_results, whois_data, github_results)`
Consolidates all gathered OSINT into a structured JSON report.
## External APIs Used
| API | Endpoint | Auth | Purpose |
|-----|----------|------|---------|
| Shodan | `api.shodan.io` | API key | Internet-wide device search |
| crt.sh | `https://crt.sh/?q=...&output=json` | None | Certificate transparency |
| RDAP | `https://rdap.org/domain/` | None | WHOIS lookup |
| SecurityTrails | `https://api.securitytrails.com/v1/` | API key | DNS history |
| GitHub | `https://api.github.com/search/code` | Token | Code search for exposures |
@@ -0,0 +1,183 @@
#!/usr/bin/env python3
# For authorized penetration testing and lab environments only
"""OSINT Collection Agent - Gathers open-source intelligence on targets using Shodan and crt.sh."""
import json
import logging
import argparse
from datetime import datetime
import requests
import shodan
logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s")
logger = logging.getLogger(__name__)
def search_shodan(api_key, query, max_results=100):
"""Search Shodan for hosts matching a query."""
api = shodan.Shodan(api_key)
results = api.search(query, limit=max_results)
hosts = []
for match in results["matches"]:
hosts.append({
"ip": match["ip_str"],
"port": match["port"],
"org": match.get("org", ""),
"os": match.get("os", ""),
"hostnames": match.get("hostnames", []),
"product": match.get("product", ""),
"version": match.get("version", ""),
"country": match.get("location", {}).get("country_name", ""),
"ssl_subject": match.get("ssl", {}).get("cert", {}).get("subject", {}),
})
logger.info("Shodan returned %d results for query: %s", len(hosts), query)
return hosts
def shodan_host_lookup(api_key, ip_address):
"""Lookup a specific host on Shodan for detailed information."""
api = shodan.Shodan(api_key)
host = api.host(ip_address)
return {
"ip": host["ip_str"],
"org": host.get("org", ""),
"os": host.get("os", ""),
"ports": host.get("ports", []),
"vulns": host.get("vulns", []),
"hostnames": host.get("hostnames", []),
"country": host.get("country_name", ""),
"city": host.get("city", ""),
"asn": host.get("asn", ""),
}
def query_crtsh(domain):
"""Query certificate transparency logs via crt.sh for subdomain discovery."""
url = f"https://crt.sh/?q=%.{domain}&output=json"
resp = requests.get(url, timeout=30)
if resp.status_code != 200:
logger.warning("crt.sh query failed for %s: %d", domain, resp.status_code)
return []
entries = resp.json()
subdomains = set()
for entry in entries:
name_value = entry.get("name_value", "")
for name in name_value.split("\n"):
name = name.strip().lower()
if name and "*" not in name:
subdomains.add(name)
logger.info("crt.sh found %d unique subdomains for %s", len(subdomains), domain)
return sorted(subdomains)
def whois_lookup(domain):
"""Perform WHOIS lookup via RDAP (Registration Data Access Protocol)."""
url = f"https://rdap.org/domain/{domain}"
resp = requests.get(url, timeout=30)
if resp.status_code == 200:
data = resp.json()
return {
"domain": domain,
"status": data.get("status", []),
"nameservers": [ns.get("ldhName", "") for ns in data.get("nameservers", [])],
"events": [
{"action": e["eventAction"], "date": e["eventDate"]}
for e in data.get("events", [])
],
}
return {"domain": domain, "error": resp.status_code}
def query_securitytrails(api_key, domain):
"""Query SecurityTrails API for DNS history."""
url = f"https://api.securitytrails.com/v1/domain/{domain}"
headers = {"apikey": api_key}
resp = requests.get(url, headers=headers, timeout=30)
if resp.status_code == 200:
data = resp.json()
return {
"domain": domain,
"current_dns": data.get("current_dns", {}),
"alexa_rank": data.get("alexa_rank"),
"hostname": data.get("hostname"),
}
return {"domain": domain, "error": resp.status_code}
def search_github_exposure(query, github_token=None):
"""Search GitHub for exposed credentials or sensitive data."""
headers = {"Accept": "application/vnd.github.v3+json"}
if github_token:
headers["Authorization"] = f"token {github_token}"
url = "https://api.github.com/search/code"
resp = requests.get(url, headers=headers, params={"q": query, "per_page": 20}, timeout=30)
if resp.status_code == 200:
items = resp.json().get("items", [])
results = []
for item in items:
results.append({
"repo": item["repository"]["full_name"],
"path": item["path"],
"url": item["html_url"],
})
logger.info("GitHub search found %d results for: %s", len(results), query)
return results
return []
def generate_osint_report(domain, subdomains, shodan_results, whois_data, github_results):
"""Generate a consolidated OSINT report."""
report = {
"target": domain,
"timestamp": datetime.utcnow().isoformat(),
"subdomains": subdomains,
"subdomain_count": len(subdomains),
"shodan_hosts": shodan_results,
"whois": whois_data,
"github_exposure": github_results,
}
lines = [
f"OSINT REPORT - {domain}",
"=" * 40,
f"Subdomains discovered: {len(subdomains)}",
f"Shodan hosts found: {len(shodan_results)}",
f"GitHub exposures: {len(github_results)}",
]
print("\n".join(lines))
return report
def main():
parser = argparse.ArgumentParser(description="OSINT Collection Agent")
parser.add_argument("--domain", required=True, help="Target domain for OSINT")
parser.add_argument("--shodan-key", help="Shodan API key")
parser.add_argument("--shodan-query", help="Custom Shodan search query")
parser.add_argument("--github-token", help="GitHub personal access token")
parser.add_argument("--output", default="osint_report.json")
args = parser.parse_args()
subdomains = query_crtsh(args.domain)
whois_data = whois_lookup(args.domain)
shodan_results = []
if args.shodan_key:
query = args.shodan_query or f"hostname:{args.domain}"
shodan_results = search_shodan(args.shodan_key, query)
github_results = []
if args.github_token:
github_results = search_github_exposure(
f'"{args.domain}" password OR secret OR api_key', args.github_token
)
report = generate_osint_report(
args.domain, subdomains, shodan_results, whois_data, github_results
)
with open(args.output, "w") as f:
json.dump(report, f, indent=2)
logger.info("OSINT report saved to %s", args.output)
if __name__ == "__main__":
main()