Posts: 8
Threads: 3
Joined: Dec 2018
i need to make wordlist dic
from 6 digit numbers
start from 000000 to 999999
and save it with crunch to text
i try but give me like this
000000000001000002000003
i need them
000001
000002
000003
can any one give me the right methode
Posts: 930
Threads: 4
Joined: Jan 2015
hashcat doesn't need an external wordlist for this. Just use -a 3 and ?d?d?d?d?d?d.
~
Posts: 8
Threads: 3
Joined: Dec 2018
thanks
what if i need to creat it
how to make it
Posts: 32
Threads: 4
Joined: Nov 2015
02-02-2019, 10:36 PM
(This post was last modified: 02-02-2019, 11:47 PM by Jiminy.)
./hashcat64.bin --stdout -m 100 -a 3 ?d?d?d?d?d?d --markov-disable >stdouttest.txt
sort stdouttest.txt > stdouttest.sorted
The above will work. I just tried it.
The -m 100 is to make it generate the numbers you want with a hash type of m100.
Probably can use any -m xxx number.
Since there is no actual hash file, I used --stdout to make it work.
The stdouttest.txt is just a file name I used. You can use anything you want.
I used --markov-disable to make sure it included all the numbers.
I then sorted the file to make it as you described in your text.
There are probably more elegant ways to do it though.
Try it, it works.
Good luck.
Posts: 5,185
Threads: 230
Joined: Apr 2010
Note that you can also use -o here instead of using the shell redirect >