mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-17 14:10:31 -04:00
lit experiment with hydra
This commit is contained in:
parent
0906bb386b
commit
4261c9c087
1 changed files with 19 additions and 0 deletions
19
Other_Hackings/Password_cracking.md
Normal file
19
Other_Hackings/Password_cracking.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Password
|
||||
|
||||
## Brute-force password cracking with Hydra
|
||||
|
||||
1. Download [Hydra](https://www.thc.org/thc-hydra/) and install it:
|
||||
|
||||
```bash
|
||||
$ ./configure
|
||||
$ make
|
||||
$ make install
|
||||
```
|
||||
|
||||
2. Check with Burp what's the auth type (e.g. use FoxyProxy to proxy to localhost:8080 so burp can intercept it).
|
||||
|
||||
2. Run hydra with wordlists (and username lists). Example:
|
||||
|
||||
```bash
|
||||
$ hydra -l <username> -P <password-list> -V <server> <service>
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue