- `ffuf` enables us to perform recursive fuzzing with the `-recursion` flag - Specify a recursion depth with the `-recursion-depth <#>` flag - Also specify an extension with the `-e` flag ```bash ffuf -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-small.txt -u http://<target_FQDN/IP>:<port>/directory/FUZZ -recursion -e .php -ic -c ffuf -w /usr/share/seclists/Discovery/Web-Content/directory-list-2.3-small.txt -u http://<target_FQDN/IP>:<port>/directory/FUZZ -recursion-depth <number> -e .php -ic -c ``` ![[images/Pasted image 20251115201658.png]]