Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: "Sebastian G." <seppi@xxxxxxxxx>
- Date: Wed, 02 May 2007 14:16:02 +0200
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);
}
.
- Follow-Ups:
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: Walter Roberson
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- References:
- Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: poster3814
- Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Prev by Date: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Next by Date: Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Previous by thread: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Next by thread: Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Index(es):
Relevant Pages
|
|