10-05-2011, 09:03 PM
(10-05-2011, 07:27 PM)Gajan Wrote: Using HC+ this is how i do it when i want to cover a range of characters in all possible combinations.
This example is to cover all possible 6-character-long words containing uppercased & lowercased alpha + digits, but if modified will do whatever you want.
1) Create/generate a wordlist with all possible 3-character-words (there are many tools out there to do this).
2) Copy this wordlist, rename it into a rule-file (for example "add3.rule") and open it up with ultraedit.
3) Switch to column-mode and insert a "$" ahead of each character like this:
aaa ---> $a$a$a
aab ---> $a$a$b
aac ---> $a$a$c
aad ---> $a$a$d
4) Save that rule. Run the wordlist with these rules and the output will be all possible combinations of uppercased/lowercased alpha + digits & 6 characters of lenght (3 in the wordlist and another 3 added by the rule).
Feel free to send me a pm if i need to explain better.
So i'd have the wordlist and rule file too?
What program can i use to create wordlists as you said?
How would i do it with 1-16 characters (lower.upper and symbols)
I'm using hashcat lite to bruteforce 1 hash at a time, is that good too?
Thanks!