Enumeration & Brute Force
December 23, 2025Common Places to Enumerate
- Registration page
- Password reset features
- Verbose Errors
- Data Breach Information
Enumeration using Verbose Message
Here we get a verbose message wither the user is registered or not so we can write a script to enumerate the emails
| |
Brute Forcing Weak OTP
The website uses a three digit OTP so I made this script to brute force it
| |
Brute Force Basic HTTP Auth
Here there is a header that encodes the username and password in base64 so here is a script I wrote to brute force
| |
and here is the hydra command that do the same job
| |
OSINT
- waybackurls tool
- Google dorks
- To find administrative panels:
site:example.com inurl:admin - To unearth log files with passwords:
filetype:log "password" site:example.com - To discover backup directories:
intitle:"index of" "backup" site:example.com
- To find administrative panels: