-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Operator Workflows
Start with the smallest source set and least active behavior that can answer the engagement question. Replace example.com only with an authorized target.
uv run theHarvester -d example.com -b crtsh,certspotter,commoncrawlUse the README source matrix to choose complementary sources. Adding every source usually increases noise, rate-limit failures, and runtime more than it improves a focused run.
uv run theHarvester -d example.com -b crtsh,certspotter -f reportUse report.json for automation and report.xml for the smaller legacy host/email representation. See Results and Local Data.
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -b crtsh,certspotter -rTo control the resolvers used:
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -b crtsh -r resolvers.txtResolver files contain one IP address per line. DNS requests disclose candidate names to the selected resolver.
Configure the Shodan key, then enrich resolved hosts:
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -b crtsh -r -sShodan output is enrichment after discovery and is separate from what most discovery sources add to the consolidated result columns.
Use only an owned or explicitly authorized target:
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -cDNS brute force actively tests candidate names. Do not run it against example.com or an unrelated third-party domain.
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -b crtsh,certspotter -tTreat matches as leads requiring manual confirmation. Do not claim a takeover from a fingerprint match alone.
Install Chromium first, then choose an output directory:
uv run playwright install chromium
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -b crtsh -r --screenshot screenshotsScreenshots actively open discovered web services and may retain sensitive page content.
AUTHORIZED_DOMAIN='replace-with-a-domain-you-control'
uv run theHarvester -d "$AUTHORIZED_DOMAIN" -aProvide a custom path wordlist with -w FILE. This sends requests directly to the target and must be explicitly in scope.
When a combined run fails, rerun only the affected source with a conservative result limit:
uv run theHarvester -d example.com -b source-name -l 10Check the provider's current status, authentication requirements, rate limits, and terms before reporting a tool defect.
Repository · Releases · Issues · Contributing · Security · License
Reviewed wiki changes belong in docs/wiki/. The live GitHub wiki is the published copy.