Cannot remove a hash
#2
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


Messages In This Thread
Cannot remove a hash - by slawson - 11-12-2014, 06:32 AM
RE: Cannot remove a hash - by epixoip - 11-12-2014, 07:15 AM
RE: Cannot remove a hash - by slawson - 11-12-2014, 09:07 AM
RE: Cannot remove a hash - by Mem5 - 11-12-2014, 09:17 AM
RE: Cannot remove a hash - by slawson - 11-12-2014, 07:05 PM