Parsing out hashes from single lines
#2
Code:
egrep -o '[0-9a-fA-F]{32}' md5.sql > md5_hashes_unsorted_ununiqed.hash

or even better and much more correct (because otherwise you could get some false positives):

Code:
SELECT password INTO OUTFILE 'md5_hashes_unsorted_ununiqed.hash' FROM table;


Messages In This Thread
RE: Parsing out hashes from single lines - by philsmd - 03-18-2017, 09:13 PM