![]() |
Extracting the passwords from a multiple file wordlist (sed & grep). - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: General Talk (https://hashcat.net/forum/forum-33.html) +--- Thread: Extracting the passwords from a multiple file wordlist (sed & grep). (/thread-1289.html) Pages:
1
2
|
RE: Extracting the passwords from a multiple file wordlist (sed & grep). - epixoip - 06-17-2012 Quote:I notice that you are attempting to chop the beginning and end from words to try to remove the "password padding". [...] You could keep chopping bits off until you find a word match I suppose. This way applebanana would eventually be found by either apple or banana I'm happy you picked up on that, because that's what I was hinting at ![]() You could write a plethora of different rules for trying to match against your wordlist. Hopefully this got you on the right track though. Quote:At first when you posted I didn't see how I would save any new words that were not in the original dictionary, but now I do since you posted the demo. Yeah, you can just redirect stdout from this into a new file to get all of the apparently non-random words. I sent all of the 'looks random' messages to stderr, so if you just did >newords you'd still see the 'looks random' messages on stderr without affecting the contents of the file. RE: Extracting the passwords from a multiple file wordlist (sed & grep). - Hash-IT - 06-17-2012 Hi epixoip Thank you once again for your post, very helpful. I am thinking up new rules for this all the time. Also I think I should search for the longest words first not the shortest as shorter words are often in longer words. Pass from password for example. I am going to give this more thought as it will be useful for ULM. Thank you. RE: Extracting the passwords from a multiple file wordlist (sed & grep). - tony - 06-20-2012 Verry nice thread, THANK YOU ! |