4 word combinations from a short list of words - 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: 4 word combinations from a short list of words (/thread-7131.html) |
4 word combinations from a short list of words - Dipperdoors - 12-23-2017 Using a list of 1500 common nouns, I need to try all combinations of exactly four nouns and their plurals (add s) to crack an MD5. wordlist: fruit apple pear banana turkey tree photo plant example passwords fruitsapplepearbanana turkeytreesphotoplant no capitals, so spaces. I've looked around, but can only figure out how to do combine two. Any pointers? RE: 4 word combinations from a short list of words - philsmd - 12-23-2017 you could use someting like this (a perl script) and change the words if you need: Code: #!/usr/bin/env perl The only "probem" is that it will increase very fast the more words there are in the array/dict. RE: 4 word combinations from a short list of words - undeath - 12-23-2017 You can create a dict of two combined nouns using either combinator or hashcat's stdout and then run a combinator attack with that new dict. RE: 4 word combinations from a short list of words - devilsadvocate - 12-23-2017 You can create a short wordlist and then feed it to prince processor with "--elem-cnt-min=4 --elem-cnt-max=4" Interesting perl solution though. RE: 4 word combinations from a short list of words - Dipperdoors - 12-24-2017 (12-23-2017, 02:22 PM)philsmd Wrote: The only "probem" is that it will increase very fast the more words there are in the array/dict. Perl script is interesting, thx but the size a big problem with the dictionary (list is n=1500, so I think the total number of entries with plurals is 3000^4 or something like that). Thx though, I had fun with it, haven't looked at perl before. |