| name | osint |
| description | Open Source Intelligence techniques — social media investigation, geolocation from images, DNS/web reconnaissance. Use when gathering intelligence from publicly available sources, identifying a person/location/organization, or performing passive reconnaissance. |
| license | MIT |
| compatibility | Requires filesystem-based agent with bash, Python 3, curl, and internet access. |
| allowed-tools | Bash Read Write Edit Glob Grep WebSearch WebFetch |
| metadata | {"user-invocable":"true","argument-hint":"<target or image-path>"} |
OSINT
Document Map
| Target | Document |
|---|
| Social media accounts, usernames, profile analysis, Unicode steganography | Social Media |
| Image location, EXIF, reverse image search, satellite analysis, maps | Geolocation |
| DNS records, WHOIS, SSL certificates, Wayback Machine, Google dorks, Shodan | DNS & Web Recon |
Image Geolocation Checklist
exiftool image.jpg | grep -iE '(GPS|Location|Date|Camera|Make)'
DNS Recon
dig ANY target.com
dig AXFR target.com @ns1.target.com
dig A target.com && dig AAAA target.com
dig MX target.com && dig TXT target.com
dig CNAME www.target.com
for sub in $(cat subdomains.txt); do
host "$sub.target.com" 2>/dev/null | grep -E "has (IPv6 )?address"
done
Google Dorks
site:target.com filetype:pdf confidential
site:target.com intitle:"index of"
site:target.com inurl:admin
site:target.com ext:sql | ext:bak | ext:old
site:github.com "target.com" password OR secret OR api_key