Brute-Force
Theory
We may attempt to brute-force a web service as we may not be able to fully interact with it without credentials. Most web services come with a default user account such as admin and may use common, default, weak or leaked passwords.
For our brute-force attack, it will dramatically increase our chances of success and reduce the expected duration of our attack. We even may generate our own wordlist for this purpose.
Practice
We can use Hydra to perform such attack on HTTP/HTTPS forms. We might use following methods:
http-get-form, in case of an http page with a get form
https-get-form, in case of an https page with a get form
http-post-form, in case of an http page with a post form
https-post-form, in case of an https page with a post form
This methods take parameters in the following format
Resources
Last updated