08-23-2017, 10:58 PM
(08-22-2017, 11:00 PM)philsmd Wrote: something like this should work (on linux or mingw):
Code:cut -b 42- hashcat.potfile | ./hashcat --stdout --outfile-autohex-disable
or you could also copy the file and use any advanced/modern text editor to automatically extract the pass from your .pot file
btw: the pipe to hashcat with command line argument --stdout is needed whenever you want to convert $HEX[] passwords to non-$HEX[]
ps: you could also use your outfile (-o) if it uses the format hash:pass (which is the default --outfile-format), to do so you need to replace "hashcat.potfile" to your outfile (e.g. cracked.txt)
--------------------------------------------------------------------------------------------------
I tried "L517 v0.994" its a nice word-list generator with many options, FILTER --> TEXT TO THE RIGHT OF [STRING]:. and it works but unfortunately "L517" manage about 3.500.000 line of words only.
I will try "cut -b 42- hashcat.potfile | ./hashcat --stdout --outfile-autohex-disable"
thank you for your reply.