LandGrey / pydictor

A powerful and useful hacker dictionary builder for a brute-force attack
https://github.com/LandGrey/pydictor
GNU General Public License v3.0
3.22k stars 630 forks source link

How can add more head words? #28

Closed mecrayavcin closed 3 years ago

mecrayavcin commented 3 years ago

For example i use this command.

pydictor.py --head John -char 0123456789abcdef -- len 1 1 Works great but what if i have mode head words?

I want to use John, Mike, Jane etc more words on the head? How can i make this? pydictor.py --head John --head Mike --head Jane -char 0123456789abcdef -- len 1 1 Not working

I have a text file and there are names on it and all i need, use these words on the head!

Thanks

mecrayavcin commented 3 years ago

@LandGrey Pleae help for this topic. Thank you

LandGrey commented 3 years ago

For example i use this command.

pydictor.py --head John -char 0123456789abcdef -- len 1 1 Works great but what if i have mode head words?

I want to use John, Mike, Jane etc more words on the head? How can i make this? pydictor.py --head John --head Mike --head Jane -char 0123456789abcdef -- len 1 1 Not working

I have a text file and there are names on it and all i need, use these words on the head!

Thanks

you have many methods reaching it with pydictor:

python pydictor.py --conf "[John,Mike,Jane]{1,1}<none>[0-9,a-f]{1,1}<none>"

or

python pydictor.py --conf "[/tmp/head.txt]{1,1}<none>[0-9,a-f]{1,1}<none>"

step 1. generation common word list, such as /tmp/common.txt

python pydictor.py -char 0123456789abcdef --len 1 1 -o /tmp/common.txt

step 2. prepared head word list file,such as /tmp/head.txt,it's content as following:

John
Mike
Jane

step 3. use hybrider tool

python pydictor.py -tool hybrider /tmp/head.txt /tmp/common.txt
mecrayavcin commented 3 years ago

Thanks you are awesome. Thanks again.