Skip to content

Instantly share code, notes, and snippets.

@hoodoer
Last active December 7, 2023 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hoodoer/a95d7ec18c70136ec993492eb1753bc1 to your computer and use it in GitHub Desktop.
Save hoodoer/a95d7ec18c70136ec993492eb1753bc1 to your computer and use it in GitHub Desktop.
Hashcat oneliners
IKE-PSK:
./hashcat -m 5300 vpn.psk ../PasswordLists/Top109Million-probable-v2.txt -a 0 -r rules/wtf.rule -O
Responder:
hashcat -m 5600 hashes\hash.txt password_list.txt -o cracked\cracked.txt -O -r rules/best64.rule
example:
./hashcat -m 5600 hashes.txt ../../VM\ Share/PasswordLists/rockyou.txt -o passwords.txt -O -r rules/best66.rule
Microsoft SQL Server hashes:
./hashcat-cli32.bin -m 1300 /root/Desktop/pass /pentest/passwords/wordlists/rockyou.txt
./hashcat-cli32.bin -m 1300 '/root/Desktop/pass' '/pentest/passwords/wordlists/rockyou.txt'
MSSQL 2005 is -m 132
The version of the database for MS matters on what the type is
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment