make dictionary with crunch help
Hi
I would like create a dictionary with following configuration:
- 10 by 10
With Letters "ABCDEF" and Numbers "0123456789"
1º Dictionary --> No repetitions example "ABCDEF0123, ABCDEF0124..., 9876543210"
2ª Dictionary--> With only one repetition "AABCDEF012,AABCDEF013,... 9987654321".
Is possible make this with crunch?
If not, existe anyway make this with another program.
thank you for the help
Re: make dictionary with crunch help
By reading quick through the manpage of Crunch, it doesn't say anything about such function (http://www.irongeek.com/i.php?page=b...n-pages/crunch).
Why do you want it like that?
Re: make dictionary with crunch help
./crunch 10 10 -f charset.lst hex-upper -d 1@
will generate what you want.
Re: make dictionary with crunch help
Quote:
Originally Posted by
bofh28
./crunch 10 10 -f charset.lst hex-upper -d 1@
will generate what you want.
Hi
Doesn't work.
In max i only want one number/Letter repeat.
I have three zeros and three ones
i want like this 010239B45 (only one repeat)
i have crunch version 3.3.
results from command ./crunch 10 10 -f charset.lst hex-upper -d 1@
0101019B32
0101019B34
0101019B35
0101019B36
0101019B37
0101019B38
0101019B39
0101019B3A
0101019B3B
0101019B3C
0101019B3D
0101019B3E
0101019B3F
0101019B40
0101019B41
0101019B42
0101019B43
0101019B45
Anyway thxs for the help.
Re: make dictionary with crunch help
i already try the crunch help but i can't make it.
Re: make dictionary with crunch help
The above syntax is the best crunch can do.
Re: make dictionary with crunch help
I suggest checking TAPE's blog, it has tons and tons of stuff about generating dictionaries and manipulating worllists:
http://adaywithtape.blogspot.ca/sear...ax-results=999
Re: make dictionary with crunch help
Sorry for my lack of knowledge guys--- i see there's a directory for CRUNCH on BT5r2 but i can't get it to work or even see the executable file... Do i need to download and install the latest version of CRUNCH?
thx
Re: make dictionary with crunch help
Hi Ed - please disregard my last post - i was a bit lazy i suppose. I've managed to figure it out, installed it, run it and by some miracle or leap of faith --- actually got it running. My next question is..... lol ok thanks guidof
Re: make dictionary with crunch help
Hi, i need to replace all characters "o" with "0", "ch" ->"4", "sh" -> "6" is it possible make this with crunch? Thanks.