1Password Competition
#6
Proof of concept:
Code:
# Convert salt and hash from hex to raw and then to base64:
$ echo -n '00bb202b205f064e30f6fae101162a2e' | xxd -p -r | base64
ALsgKyBfBk4w9vrhARYqLg==
$ echo -n '91976be95cd28e55e580ee9f69a2139202a9b65eabfbbf33c99bc42e3665564d' | xxd -p -r | base64
kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=

# Prepare hashfile in the expected format for hashcat
$ cat test.hash
sha256:100000:ALsgKyBfBk4w9vrhARYqLg==:kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=

# Perform simple attack, piping in expected plaintext. The hash is cracked as expected.
$ echo 'tanbark artistic callus' | hashcat --quiet -m 10900 -a 0 test.hash
sha256:100000:ALsgKyBfBk4w9vrhARYqLg==:kZdr6VzSjlXlgO6faaITkgKptl6r+78zyZvELjZlVk0=:tanbark artistic callus
~


Messages In This Thread
1Password Competition - by PhilipS - 05-06-2018, 01:12 AM
RE: 1Password Competition - by royce - 05-12-2018, 07:22 PM
RE: 1Password Competition - by Flomac - 05-13-2018, 12:45 PM
RE: 1Password Competition - by PhilipS - 05-13-2018, 03:48 PM
RE: 1Password Competition - by undeath - 05-13-2018, 05:17 PM
RE: 1Password Competition - by royce - 05-13-2018, 09:42 PM
RE: 1Password Competition - by PhilipS - 05-14-2018, 12:57 AM
RE: 1Password Competition - by Flomac - 05-14-2018, 04:15 PM
RE: 1Password Competition - by royce - 05-14-2018, 04:45 PM
RE: 1Password Competition - by SpencerCostanza - 05-25-2018, 05:19 PM