PDA

View Full Version : Crunch ? creating specific word lists



Jayden_Blade
2014-11-05, 20:40
I am trying to figure out how to generate a word list like:

XDF90-AR3J4-PCE4L

with the 5 - 5 - 5
no repeating numbers like:

AAAAA-AAAAA-AAAAA
AAAAA-AAAAA-AAAAB
AAAAA-AAAAA-AAAAC

I know I can use crunch like:

crunch 15 15 charset.txt alpha-numeric | perl -ne 'print unless /([A-Z]).*\1/' > wordlist.txt

how do i create one that will have the dashes in it as well as the random w/o repeating?

Thanks in advanced

mmusket33
2014-11-06, 04:13
The King of wordlists is certainly Tape amd his tutorials are beyond excellant.

We have not used this program but it looks like it will do what you want. You could also print with crunch and then alter with worlist manipulator but I would guess wordlist manipulator will do it all.

Go here for data and download

https://code.google.com/p/wordlist-manipulator/wiki/WLM_OPTIONS

Notice in the menu item 5:

5. Include characters;
1.Include characters from a certain postion from start of word.
2.Include characters from a certain postion from end of word.

You will be able to insert your dash with a little effort.

Test some short strings and once you get the process you can print your 17 character strings

Jayden_Blade
2014-11-06, 06:51
Errors out on install :( so basically that just edits lists correct?

mmusket33
2014-11-06, 07:08
As noted we have not tested this program, just read the menu list of options. We downloaded it. We will give it a spin and get back to you. It was a BT5 program so you might just make a persistent usb install of BT5R3 and run the program from the usb.

MTC

zimmaro
2014-11-06, 08:13
Errors out on install :( so basically that just edits lists correct?
hi :)
a Mithical script by TAPE installed correctly in my kali-vm
http://www.imagestime.com/show.php/986051_Cattura.PNG.html

mmusket33
2014-11-06, 08:19
Here is your command line in crunch BUT you are going to have to learn how to start, stop, and maybe divide the files into sizes AND you probably will want to pump these files to a large external usb cd /media will get into the usb. We dump large amounts of cowpatty pmk and wordlists into usbs contantly.

crunch 17 17 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" -t @@@@@-@@@@@-@@@@@ -o filename


We HIGHLY Suggest you google Crunch A Day With Tape - There are two posting pick the later one.

Also

http://www.irongeek.com/i.php?page=backtrack-r1-man-pages/crunch

Have Fun

Jayden_Blade
2014-11-06, 09:38
Great links Thank you very much!