hex output special character
#2
it's nothing particular strange about that $HEX[...] output, instead it is just the hexadecimal representation of the string.
Yeah, if you really want you can use --outfile-autohex-disable in your first command to disable the hexadecimal conversion of strings that use characters outside the 0x20-0x7f character range.

BTW: you can just convert the hexadecimal chars (using bulk processing too, e.g. under linux with xdd etc, even online hex-converters should work, but they might have problems with the non-ascii output too - i.e. encoding issues). Or you can just use hashcat to convert the strings for you (after you have the $HEX[...] outputs in your .pot file already:
Code:
./hashcat --quiet --show --outfile-format 2 -m 0 hash_file.txt | ./hashcat --quiet --stdout
Of course, for this to work you need to use the original hash file (and not the one where you removed the hashes with --remove)


Messages In This Thread
hex output special character - by showii - 08-02-2016, 12:50 AM
RE: hex output special character - by philsmd - 08-02-2016, 10:24 AM
RE: hex output special character - by showii - 08-02-2016, 04:10 PM