Last active
December 7, 2023 12:27
-
-
Save hoodoer/a95d7ec18c70136ec993492eb1753bc1 to your computer and use it in GitHub Desktop.
Hashcat oneliners
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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