Password brute-forcing
Last updated
Last updated
The tools discussed in the section can also be utilized for a web-based password brute-force attack.
Suppose we want to brute-force a POST request to the URL: http://vuln-website.com/user/login
. Assuming that the server retrieves the data in a format, with the fields: username (test) and password. The general format of the request will be:
The data
field can be replaced with the following:
Note: The escaping of the double quotes with \
symbol in the first example, the use of single quotes in the second example, and the FUZZ
keyword.