Hashing Linux Passwords
#3
hashcat can't parse the entire /etc/shadow format with all fields.

hashcat expects either a list of raw hashes (or, when using --username, user:hash pairs)

Just trim off the first two fields (cut -d: -f1-2)


[Edit: my bad; @philsmd points out that hashcat will parse a full /etc/shadow.]
~
Reply


Messages In This Thread
Hashing Linux Passwords - by slawson - 10-30-2019, 03:18 PM
RE: Hashing Linux Passwords - by slawson - 10-30-2019, 03:21 PM
RE: Hashing Linux Passwords - by royce - 10-30-2019, 03:22 PM
RE: Hashing Linux Passwords - by slawson - 10-30-2019, 03:27 PM