Update Recon.md

This commit is contained in:
Mehdi 2024-07-24 10:20:28 +03:30 committed by GitHub
parent 9267d27269
commit 033a4d2cbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -577,4 +577,12 @@ for i in $(cat web-server.txt); do
DOMAIN=$(echo $i | unfurl format %d);
ffuf -u $1/FUZZ -w leaky-paths.txt -o ${DOMAIN}_ffuf.txt; done
```
### Fuzz api routes
```bash
ffuf -u https://target.com/FUZZ -w <wordlist path> -mc 200,301,302 -o target_bruteforce_api_routes.txt
```