Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: "Sebastian G." <seppi@xxxxxxxxx>
- Date: Thu, 03 May 2007 16:37:28 +0200
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?
.
- Follow-Ups:
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: poster3814
- 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
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: Ertugrul Soeylemez
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: poster3814
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: Sebastian G.
- Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- From: Walter Roberson
- Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Prev by Date: Re: Password Dictionary File/ Each Entry is 2 or 3 Words Concatenated?
- Next by Date: UPNP settings (DSL)
- Previous by thread: Re: 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
|