osint-harvester is a lightweight OSINT toolkit that collects and normalizes intelligence from multiple sources.
- DNS lookup (A/AAAA/MX/NS/TXT)
- WHOIS lookup
- HTTP header fingerprinting
- Simple IP reputation heuristics
- Export to JSON
- Export to STIX-like JSON format
pip install osint-harvesterosint-harvester domain example.com
osint-harvester ip 8.8.8.8
osint-harvester url https://example.comosint-harvester domain example.com --format json
osint-harvester domain example.com --format stixfrom osint_harvester import harvest_domain
data = harvest_domain("example.com")
print(data)MIT