Password Cracking
Default Creds
Building words lists
Use content from webpages to build a dictionary. This can include company pages, Facebook, twitter, and any other resource gathered when doing OSINT on the target. To grab all words from a page, Use Cewl.
Password Manglers:
Building Wordlists:
John Custom word lists
Brute forcing tools
Burpsuite (intruder): https://portswigger.net/burp
Hydra:
when bruteforcing SSH, you need to specify a timing interval:
John to crack windows hashdump:
John to crack /etc/shadow
Windows Hashdump
Cracking NTLMv2-SSP
Wifi Hacking
Protocols to target
Protocols: telnet, smtp, http, https, smb, rpc, rdp, pop, sql.
Easy ports to hit: 20-23, 25, 80, 443, 135, 139.
General advice
Specify speed when bruteforcing SSH or you will hit a wall quickly. Using hydra, this is done using the
T4
parameter.Stop after gaining access to one account. Try its creds on everything, and use its creds for further enumeration. Never forget to try
sudo -i
for easy escalation.Always take a look around the host machines file system when possible. potential low hanging fruit for enumeration. EX: Local user list at
/etc/passwd
.Never crack hashes on target machine. Speed and stealth will be abysmal.
Last updated