githubEdit

SHA1, SHA256, SHA512

SHA is a set of cryptographic hash functions.

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?u

SHA256

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?a

SHA512

SHA512 (salted)

Encrypt

SHA1

SHA256

SHA512

Generate Passwords for Linux System

Last updated