Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?



poster3814 wrote:

Are there password dictionary files whose entries aren't just single words but rather 2 or 3 words of maybe 6 letters or less concatenated?


No, for obvious reasons.

> For example, "they red solids" are 3 words of 6 letters or less that
concatenated would be "theyredsolids." Are there such dictionary files downloadable, or is there a relatively easy way one could be created?


You don't even need to create them, you can create those words on-the-fly from the dictionary:

for(String wordA : dictionary)
for(String wordB : dictionary) {
wordAB = wordA + wordB;
for(String wordC : dictionary)
test_word(WordAB+WordC);
}
.



Relevant Pages