Thanks @undeath, pretty good wordlists. And now I promise this is the last thing xD
How can I associate usernames with passwords in one .txt file, because as for now I get (obviously) something like this:
<HASHES REMOVED>
Hash | Salt | Password
And to test some hashs I used a SQL statement to make my "hashs.txt":
But I'd like to end with one unique file with this format:
Username: %s - Password: %s
I used 300 rows to test hashcat, so far works great, now I have passwords but if I want to find the user I have to query my localhost each time, and start to build a custom .txt by hand (and I have more than 250k rows !)
How can I associate usernames with passwords in one .txt file, because as for now I get (obviously) something like this:
<HASHES REMOVED>
Hash | Salt | Password
And to test some hashs I used a SQL statement to make my "hashs.txt":
Code:
SELECT CONCAT(members_pass_hash, ":", members_pass_salt)
FROM members
LIMIT 300
INTO OUTFILE "hashs.txt"
But I'd like to end with one unique file with this format:
Username: %s - Password: %s
I used 300 rows to test hashcat, so far works great, now I have passwords but if I want to find the user I have to query my localhost each time, and start to build a custom .txt by hand (and I have more than 250k rows !)