SHA1, SHA256, SHA512
Decrypt
SHA1
john --format=raw-sha1 --wordlist=wordlist.txt hash.txt
hashcat -m 100 -a 0 hash.txt wordlist.txt
# using mask e.g. 5 characters
# ?a: all type of character
hashcat -m 100 -a 3 ?a?a?a?a?a
# ?d: decimal
hashcat -m 100 -a 3 ?d?d?d?d?d
# ?l: alphabet (lowercase)
hashcat -m 100 -a 3 ?l?l?l?l?l
# ?u: alphabet (uppercase)
hashcat -m 100 -a 3 ?u?u?u?u?uSHA256
john --format=raw-sha256 --wordlist=wordlist.txt hash.txt
hashcat -m 1400 -a 0 hash.txt wordlist.txt
# using mask e.g. 5 characters
hashcat -m 1400 -a 3 ?a?a?a?a?aSHA512
SHA512 (salted)
Encrypt
SHA1
SHA256
SHA512
Generate Passwords for Linux System
Last updated