Testing playbook · advanced
Scaling: Automation & Monitoring
Move from one-off scans to continuous coverage that pings you when a target's attack surface changes.
Detection firstStop as soon as the evidence decisively supports or falsifies the hypothesis.
Every step requires authorization. Review side effects before running commands against a live system.
Make recon idempotent
Persist per-target state and only surface deltas, so re-runs are cheap and new assets stand out.
subfinder -d target.com -all -silent | dnsx -silent | anew hosts.txt | httpx -silent | notifyEvidence checkpointSave the request or command, raw result, timestamp, target, and a negative control before continuing.
Diff over time
Schedule recon; when anew emits new subdomains/URLs/JS, trigger a focused nuclei pass on just the new assets.
nuclei -l new-hosts.txt -severity critical,high -silent | notify -bulkEvidence checkpointSave the request or command, raw result, timestamp, target, and a negative control before continuing.
Alert, don't drown
Route only high-signal events (new host, new critical, changed JS) to Slack/Discord. Noise kills automation.
Evidence checkpointSave the request or command, raw result, timestamp, target, and a negative control before continuing.
Field notes
Common guidance
- Continuous monitoring beats deep one-time scans for bounty ROI - you catch new deploys first.
- Keep resolver lists and templates fresh via cron or the signal quality decays.
Related tools
Mapped workflow tools
Sources
References
Version history: normalized permanent page created 2026-08-20.