BBOT (Bighorn Buster OSINT Tool) is an OSINT automation framework for hackers and security researchers, combining subdomain enumeration, port scanning, web screenshots, and more into a single modular pipeline. Current version: 2.8.4. Released regularly (multiple minor versions per month) on PyPI.
pip install bbotVerified import paths — ran on the pinned version, not inferred.
Initialize the BBOT scanner with target domain, enable subdomain enumeration and port scan, output to CSV, and run.
Update imports to `from bbot.scanner import scanner` and use `scanner()` function.
Always instantiate a new scanner object per scan, e.g., `s = scanner(target)`.
Check the documentation for module prerequisites and ensure required tools are in your PATH.
Run `pip install bbot` in the correct Python environment.
Use `from bbot.scanner import Scanner` instead of `from bbot import Scanner`.
Create a new scanner instance for each scan: `s = scanner(target); s.start()`.
No dependency data recorded yet.