From 1de722c07a645afa7975951b076d897600078434 Mon Sep 17 00:00:00 2001 From: Mehdi Date: Sat, 2 Sep 2023 09:15:14 +0330 Subject: [PATCH] Update Recon.md --- Recon.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Recon.md b/Recon.md index b5b8c29..a8f147d 100644 --- a/Recon.md +++ b/Recon.md @@ -1,5 +1,26 @@ # Recon +## Find a new asset/subdomain on targets +* [anew](https://github.com/tomnomnom/anew) +```bash +# asset monitor (manual) +cat domains.txt | httpx -sc -cl -location -title | anew httpx.txt +# asset monitor (automate) +while true; + cat domains.txt | httpx -sc -cl -location -title | anew httpx.txt | notify; + sleep 3600; + done + +# subdomain monitor and send notify to your discord or telegram,... channel (manual) +subfinder -silent -dL domains.txt -all | anew subdomains.txt | notify + +# subdomain monitor and send notify to your discord or telegram,... channel (automate) +while true; + do subfinder -silent -dL domains.txt -all | anew subdomains.txt | notify; + sleep 3600; + done + +``` ### Recon Subdomain & identify JS files