![]() |
|
Pydictor - A powerful and useful hacker dictionary builder for a brute-force attack - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Hacking (https://sinister.ly/Forum-Hacking) +--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools) +--- Thread: Pydictor - A powerful and useful hacker dictionary builder for a brute-force attack (/Thread-Pydictor-A-powerful-and-useful-hacker-dictionary-builder-for-a-brute-force-attack) |
Pydictor - A powerful and useful hacker dictionary builder for a brute-force attack - ZanGetsu - 09-05-2017 Preface: Q: Why I need to use pydictor ? A: 1.it always can help you You can use pydictor to generate a general blast wordlist, a custom wordlist based on Web content, a social engineering wordlist, and so on; You can use the pydictor built-in tool to safe delete, merge, unique, merge and unique, count word frequency to filter the wordlist, besides, you also can specify your wordlist and use '-tool handler' to filter your wordlist; 2.highly customized You can generate highly customized and complex wordlist by modify multiple configuration files, add your own dictionary, using leet mode, filter by length、char occur times、types of different char、regex, even customized own encryption function by modify /lib/fun/encode.py test_encode function. its very relevant to generate good or bad password wordlist with your customized rules and skilled use of pydictor; 3.powerful and flexible configuration file parsing nothing to say,skilled use and you will love it 4.great compatibility whether you are using Python 2.7 version or Python 3.x version , pydictor can be run on Windows, Linux or Mac; Install: Code: git clone --depth=1 --branch=master https://www.github.com/landgrey/pydictor.git
cd pydictor/
chmod 755 pydictor.py
python pydictor.py![]() ![]() Usage example: 1: generate the basic wordlsit based on digital lenght of 4 Code: python pydictor.py -base d --len 4 4 --output D:\exists\or\not\dict.txt2: encode the wordlist Code: python pydictor.py -base L --len 1 3 --encode b643: use d(digital) L(lowercase letter) c(capital letter) generating wordlist Code: python pydictor.py -base dLc -o /awesome/pwdCode: python pydictor.py -char "abc123._@ " --len 1 3 --tail @site5: generate permutation and combination wordlist Code: python pydictor.py -chunk abc ABC 666 . _ @ "'" --head a --tail 123 --encode md5RE: Pydictor - A powerful and useful hacker dictionary builder for a brute-force attack - mothered - 09-05-2017 There's so many useful python scripts contributed as of late. Appreciate this, thanks. |