Sinisterly
I Need to generate password list with crunch..PLZ HLP - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: I Need to generate password list with crunch..PLZ HLP (/Thread-I-Need-to-generate-password-list-with-crunch-PLZ-HLP)



I Need to generate password list with crunch..PLZ HLP - radikfreeman - 01-24-2014

PLz Help, All what i need is to generate a password list with crunch (tool avalaible on kali linux ) based on some conditions:
1- pass len : 10
2- password contain : 0123456789ABCDEF (Hexadecimal)
3- the 7 & 9 characters most be 0 (ex: AB0E520E0E)
4- the 8 & 10 characters most be the same (ex: AB0E520E0E)
5- the list most escape the bad probalitys like 0000000000 or 1111110101

Thanks for every think & i will be glad if i get some help with that.....


RE: I Need to generate password list with crunch..PLZ HLP - chmod - 01-24-2014

When running crunch with no options it generates the following text:
Code:
[chmod@localhost crunch-3.5]$ crunch crunch version 3.5 Crunch can create a wordlist based on criteria you specify. The outout from crunch can be sent to the screen, file, or to another program. Usage: crunch <min> <max> [options] where min and max are numbers Please refer to the man page for instructions and examples on how to use crunch.

There is a clue on that last line: Please refer to the man page for instructions and examples on how to use crunch.
upon inspecting the man pages they reveal the full full usage of crunch and thus will answer your question please try to solve problems yourself before asking in the future.


RE: I Need to generate password list with crunch..PLZ HLP - !M03! - 01-24-2014

(01-24-2014, 02:27 PM)radikfreeman Wrote: PLz Help, All what i need is to generate a password list with crunch (tool avalaible on kali linux ) based on some conditions:
1- pass len : 10
2- password contain : 0123456789ABCDEF (Hexadecimal)
3- the 7 & 9 characters most be 0 (ex: AB0E520E0E)
4- the 8 & 10 characters most be the same (ex: AB0E520E0E)
5- the list most escape the bad probalitys like 0000000000 or 1111110101

Thanks for every think & i will be glad if i get some help with that.....
Are you piping crunch through aircrack or something? If so, this sounds like something you can do more efficiently with hashcat as it has advanced masking options and it's much faster (if you have a GPU).

Anyways to answer your question to do this with crunch, the option you are looking for is -t

You are looking for something along the lines of this...
Quote:crunch 10 10 0123456789ABCDEF -t @@@@@@0E0E

http://www.liatsisfotis.com/2013/02/create-wordlists-using-crunch.html
go down to "Creating Wordlist - Advanced Usage"

Everything you need to know there. Masking options such as % @ ^, etc...

Good luck.


RE: I Need to generate password list with crunch..PLZ HLP - radikfreeman - 01-25-2014

Thankx @!M03! ...