Posts: 101
Threads: 34
Joined: Oct 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?
Posts: 2,936
Threads: 12
Joined: May 2012
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
Posts: 101
Threads: 34
Joined: Oct 2014
Sry. I didn't mention I am using Oclhashcat in Windows.
Posts: 803
Threads: 135
Joined: Feb 2011
11-12-2014, 09:17 AM
(This post was last modified: 11-12-2014, 09:18 AM by Mem5.)
Posts: 101
Threads: 34
Joined: Oct 2014
Awesome, I didn't know that existed. Thanks.