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

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

Secure Home | Search | About
 General Computer Security    Post an article   get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content add this group's latest topics to your Google content
Subject Author Date
Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated? poster3814 05-01-2007
Posted by poster3814 on May 1, 2007, 11:24 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
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?
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?

Thank you.
--
Please respond to the newsgroup only. Email sent to this account goes
unread.

Posted by Sebastian G. on May 2, 2007, 8:16 am
If you were  Registered and logged in, you could reply and use other advanced thread options
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);
}

Posted by Walter Roberson on May 2, 2007, 10:34 am
If you were  Registered and logged in, you could reply and use other advanced thread options
>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.

Not so obvious reasons for me -- I created something like that
about a decade ago.

But I'm not clear whether it is a directory of plaintext or of
hashes that the OP was looking for.

Posted by Ertugrul Soeylemez on May 2, 2007, 8:24 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
roberson@hushmail.com (Walter Roberson) (07-05-02 14:34:26):

> > > 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.
>
> Not so obvious reasons for me -- I created something like that about a
> decade ago.

Then you created a redundant list (not dictionary) which contains no
more information than a simple list of all terms involved. The
concatenation can be done on the fly, which generally is even faster.


> But I'm not clear whether it is a directory of plaintext or of hashes
> that the OP was looking for.

Either it's a list of plaintext strings or it's a dictionary of
plaintext-to-hash relations. A list of hash values would be pointless,
unless there is some known relationship.


Regards,
Ertugrul S=C3=B6ylemez.


--=20
=46rom the fact that this CGI program has been written in Haskell, it
follows naturally that this CGI program is perfectly secure.

Posted by poster3814 on May 2, 2007, 9:26 pm
If you were  Registered and logged in, you could reply and use other advanced thread options
Ertugrul Soeylemez wrote:
> roberson@hushmail.com (Walter Roberson) (07-05-02 14:34:26):
>
>>>> 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.
>> Not so obvious reasons for me -- I created something like that about a
>> decade ago.
>
> Then you created a redundant list (not dictionary) which contains no
> more information than a simple list of all terms involved. The
> concatenation can be done on the fly, which generally is even faster.
>
>
>> But I'm not clear whether it is a directory of plaintext or of hashes
>> that the OP was looking for.
>
> Either it's a list of plaintext strings or it's a dictionary of
> plaintext-to-hash relations. A list of hash values would be pointless,
> unless there is some known relationship.
>
>
> Regards,
> Ertugrul Söylemez.
>
>

I guess I am interested in either: dictionaries or word lists of plain
text strings - a complete list of combinations - passphrase dictionaries
; OR for a program I can use to create complete passphrase dictionaries.
I've tried searching the Internet some but haven't found them yet.
--
Please respond to the newsgroup only. Email sent to this account goes
unread.

Similar ThreadsPosted
Passphraselessly protecting dictionary relations May 10, 2007, 4:13 am
Re: Some kind of dictionary type attack? January 9, 2008, 6:22 am
Apache 1.3.33 strange log entry February 28, 2005, 1:56 pm
How delete protected XP registry entry? December 8, 2005, 7:38 pm
Re: Can't delete registry entry !! (suspected virus / trojan attack !) October 23, 2008, 5:12 pm
Re: Can't delete registry entry !! (suspected virus / trojan attack !) October 23, 2008, 5:49 pm
Re: Can't delete registry entry !! (suspected virus / trojan attack !) October 24, 2008, 5:38 am
Re: Can't delete registry entry !! (suspected virus / trojan attack !) October 24, 2008, 12:28 pm
Password protecting? May 12, 2005, 10:37 pm
Password question May 18, 2005, 1:15 pm

The site map in XML format XML site map

Contact Us | Privacy Policy