In this section, we will learn about the fuzzing process and how we can use this practice with python projects to obtain URLs and addresses vulnerable to attackers.
Getting vulnerable addresses in servers with Fuzzing
The Fuzzing process
A fuzzer is a program where we have a file that contains URLs that can be predictable for a specific application or servers. Basically, we do a request for each predictable URL, and if we see that the response is OK, it means that we have found a URL that is not public or is hidden, but later we see that we can access it.
Like most exploitable conditions, the fuzzing process is only useful against systems that improperly sanitize input, or that take more data than they can handle.
In general...