HMAC-SHA1 with binary Key
#3
pro tip with hashcat 3.6+ or newer you could just use the --encoding-to command line option (if the word list is not already using the correct encoding):

Code:
$ cat hash.txt
30263e435f8ce1b2fcdb9c559941783e337d2168:548afbb1fff2e98e2483209cf891546db5be25ef04868d2dd7c8c673d6c5826e
$ cat dict.txt
hashcat
$ xxd -p dict.txt
686173686361740a
$ hashcat -m 160 --hex-salt --encoding-to=utf-16le hash.txt dict.txt
30263e435f8ce1b2fcdb9c559941783e337d2168:548afbb1fff2e98e2483209cf891546db5be25ef04868d2dd7c8c673d6c5826e:$HEX[6800610073006800630061007400]


Messages In This Thread
HMAC-SHA1 with binary Key - by vinicius.vbf - 10-16-2017, 02:32 AM
RE: HMAC-SHA1 with binary Key - by Chick3nman - 10-16-2017, 06:03 AM
RE: HMAC-SHA1 with binary Key - by philsmd - 10-16-2017, 07:33 AM
RE: HMAC-SHA1 with binary Key - by vinicius.vbf - 10-17-2017, 03:12 AM