From a429003ca772a1bf4be7f4d3bb0a55bae60ec15d Mon Sep 17 00:00:00 2001 From: Mehdi Date: Thu, 30 May 2024 16:20:51 +0330 Subject: [PATCH] Update Recon.md --- Recon.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Recon.md b/Recon.md index 4d6f271..1de4aa8 100644 --- a/Recon.md +++ b/Recon.md @@ -496,8 +496,12 @@ grep -E "target.com. [0-9]+ IN A .+" /tmp/results.txt # running assetfinder tool for subdomains and massDNS tool for resolving assetfinder target.com –subs-only | massdns -r resolvers.txt -o S -w resolved.txt - +# subdomain brute-forcing +./scripts/subbrute.py lists/names.txt target.com | ./bin/massdns -r lists/resolvers.txt -t A -o S -w massout_brute +# display only discovered subdomains and delete the dot from the end of each line +cat massout_brute | awk '{print $1}' | sed 's/.$//' | sort -u ``` + * [gobuster](https://github.com/OJ/gobuster) ```bash # bruteforcing dns