Multiple wordlist with brute force
#7
(06-19-2020, 05:31 PM)philsmd Wrote: it's negligible. the more words, the less likely is that a word occurs multiple times.

As said, you could develop a fast password candidate generator that does all that fancy stuff: combining, concatenating, filtering etc ... but at the very end it could turn out to be much slower than just combining the words as described above.

There are of course some things you could do, for instance filter your left_dict.txt file and right_dict.txt with something like the unix grep command etc... but again, it will turn out to be only very few combinations out of hundred of thousands, negligible. This is normally not how you speed up things, it's probably best to come up with a more clever idea on how to attack those hashes ... and maybe reduce the number of words in the dict significantly (and also in a way it still cracks all/most of the hashes) etc

I don't think it's negligible because each term would have a repeat of 10,000 at [term] + [4 digit number] and then another 10,000 times X 10,000 when combining the first wordlist ([term] + [4 digit number]) + [term] and then another 10,000 for the 4 digit number thereafter and another multiple of 10,000 when adding in the final term.

Is what I am trying to do even possible in regards to filtering each line to prevent duplicate dictionary terms?
Reply


Messages In This Thread
RE: Multiple wordlist with brute force - by joshdanielsjr - 06-19-2020, 05:42 PM