Attacking Web Applications With Ffuf (Check)
Can remove to tools.
Ffuf is a reliable tool for web applications fuzzing.
Some things you might want to fuzz.
Directories
Pages
Sub-domains
Parameters
Values
To get rid of the credits that are in the secLists wordlists you can use the
-ic
flag.Ffuf has the option to scan recursively (
-recursion
), meaning that it automatically starts another scan under any newly identified directories that may have on their pages until it has fuzzed the main website and all of its subdirectories. Since it would take a lot of time, it's recommended to set a depth limit (-recursion-depth
).Take note that if the website isn't publicly hosted then you need to add it to your hosts file (Both main site and other discovered subdomains) (Code provided below)
Also take note of VHosts which can affect your subdomain fuzzing result. VHost is basically a sub-domain served on the same server and has the same IP.
Code:
Last updated