Please note, this is a STATIC archive of website hashcat.net from 08 Oct 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.

hashcat Forum

Full Version: Cannot remove a hash
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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?
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
Sry. I didn't mention I am using Oclhashcat in Windows.
Awesome, I didn't know that existed. Thanks.