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 Sebastian G. on May 3, 2007, 6:12 am
If you were  Registered and logged in, you could reply and use other advanced thread options
poster3814 wrote:


> 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.


As you've already been told: Such a program doesn't exist, because it's
absolutely trivial. You can even implement it with a one-line shell script
on almost any platform.

Posted by Walter Roberson on May 3, 2007, 8:33 am
If you were  Registered and logged in, you could reply and use other advanced thread options
>poster3814 wrote:

>> 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.

>As you've already been told: Such a program doesn't exist, because it's
>absolutely trivial. You can even implement it with a one-line shell script
>on almost any platform.

Then you won't mind sharing your one-line shell script with poster3814.


Posted by Sebastian G. on May 3, 2007, 10:37 am
If you were  Registered and logged in, you could reply and use other advanced thread options
Walter Roberson wrote:


>> As you've already been told: Such a program doesn't exist, because it's
>> absolutely trivial. You can even implement it with a one-line shell script
>> on almost any platform.
>
> Then you won't mind sharing your one-line shell script with poster3814.

May I presume Windows cmd Shell?

(for /f "delims=" %i in (dictionary.txt) do \
for /f "delims=" %j in (dictionary.txt) do \
for /f "delims=" %k in (dictionary.txt) do echo %i%j%k) >output.txt

Or Bash?

(for $i in [dictionary.txt]; do; \
for $j in [dictionary.txt]; do; \
for $k in [dictionary.txt]; do; echo -n $i$j$k; end; end; end;) >output.txt

Now, need even more evidence that this is totally trivial?

Posted by Walter Roberson on May 3, 2007, 7:53 pm
If you were  Registered and logged in, you could reply and use other advanced thread options

>>> As you've already been told: Such a program doesn't exist, because it's
>>> absolutely trivial. You can even implement it with a one-line shell script
>>> on almost any platform.

>> Then you won't mind sharing your one-line shell script with poster3814.

>May I presume Windows cmd Shell?

>(for /f "delims=" %i in (dictionary.txt) do \
>for /f "delims=" %j in (dictionary.txt) do \
>for /f "delims=" %k in (dictionary.txt) do echo %i%j%k) >output.txt

>Or Bash?
>
>(for $i in [dictionary.txt]; do; \
>for $j in [dictionary.txt]; do; \
>for $k in [dictionary.txt]; do; echo -n $i$j$k; end; end; end;) >output.txt

>Now, need even more evidence that this is totally trivial?

Your programs do not appear to meet the user requirements that
the total after concatenation be 6 letters or less. It also does
not meet the requirement that two or three words be concatenated.

Posted by Sebastian G. on May 4, 2007, 7:07 am
If you were  Registered and logged in, you could reply and use other advanced thread options
Walter Roberson wrote:


>> Now, need even more evidence that this is totally trivial?
>
> Your programs do not appear to meet the user requirements that the total
> after concatenation be 6 letters or less.


You can add this trivially.

> It also does
> not meet the requirement that two or three words be concatenated.


Oh c'mon, now this is so trivial as well.

But you're kinda right. It is furtile to discuss about such trivial things.
Especially with idiots who don't even consider it as trivial.

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