hashcat Forum
Cannot remove a hash - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html)
+--- Forum: Old oclHashcat Support (https://hashcat.net/forum/forum-38.html)
+--- Thread: Cannot remove a hash (/thread-3824.html)



Cannot remove a hash - slawson - 11-12-2014

When I attempt to use the --remove parameter against a fgdump hash file, I get the message: Remove not supported in native hashfile-format mode.

Do I have to modify the file to only show Username:Hash or is there an easier way to do this?


RE: Cannot remove a hash - epixoip - 11-12-2014

Code:
cut -d: -f4 fgdump_file >ntlm.txt

or if you want to preserve usernames,

Code:
awk -F: '{print $1 ":" $4}' fgdump_file >ntlm.txt

and use --username


RE: Cannot remove a hash - slawson - 11-12-2014

Sry. I didn't mention I am using Oclhashcat in Windows.


RE: Cannot remove a hash - Mem5 - 11-12-2014

cut, grep, awk, etc for windows : http://sourceforge.net/projects/unxutils/ and http://gnuwin32.sourceforge.net/packages/coreutils.htm


RE: Cannot remove a hash - slawson - 11-12-2014

Awesome, I didn't know that existed. Thanks.