Skip to content

Latest commit

 

History

History
102 lines (72 loc) · 3.06 KB

File metadata and controls

102 lines (72 loc) · 3.06 KB

Wordlists

Table of Contents

Resources

Name Description URL
bopscrk Tool to generate smart and powerful wordlists https://github.com/r3nt0n/bopscrk
CeWL CeWL is a Custom Word List Generator. https://github.com/digininja/cewl
clem9669/wordlists Various wordlists FR & EN - Cracking French passwords https://github.com/clem9669/wordlists
COOK An overpower wordlist generator, splitter, merger, finder, saver, create words permutation and combinations, apply different encoding/decoding and everything you need. https://github.com/glitchedgitz/cook
CUPP Common User Passwords Profiler (CUPP) https://github.com/Mebus/cupp
Kerberos Username Enumeration Collection of username lists for enumerating kerberos domain users https://github.com/attackdebris/kerberos_enum_userlists
maskprocessor High-Performance word generator with a per-position configureable charset https://github.com/hashcat/maskprocessor
pseudohash Password list generator that focuses on keywords mutated by commonly used password creation patterns https://github.com/t3l3machus/psudohash
SecLists A collection of multiple types of lists used during security assessments, collected in one place. https://github.com/danielmiessler/SecLists
Username Anarchy Username tools for penetration testing https://github.com/urbanadventurer/username-anarchy

Bash

Add Numbers to Password Segment

$ for i in {1..100}; do printf "Password@%d\n" $i >> <FILE>; done

CeWL

https://github.com/digininja/cewl

$ cewl -d 0 -m 5 -w <FILE> http://<RHOST>/index.php --lowercase
$ cewl -d 5 -m 3 -w <FILE> http://<RHOST>/index.php --with-numbers

CUPP

https://github.com/Mebus/cupp

$ ./cupp -i

crunch

Common Commands

$ crunch 9 9 -t foobar%%% > wordlist.txt
$ crunch 5 5 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ -o <FILE>.txt

Special Character Example

$ crunch 1 1 '!@#$%^&*' -o specials1.txt
$ crunch 2 2 '!@#$%^&*' -o specials2.txt
$ sed 's/^/foob4r!/' specials1.txt > wordlist1.txt
$ sed 's/^/f00b4r!/' specials2.txt > wordlist2.txt

JavaScript Quick Wordlist

https://twitter.com/renniepak/status/1780916964925345916

javascript:(function(){const e=document.documentElement.innerText.match(/[a-zA-Z_\-]+/g),n=[...new Set(e)].sort();document.open(),document.write(n.join("<br>")),document.close();})();

Mutate Wordlists

Find empty Passwords

$ grep -n '^$' /PATH/TO/WORDLIST/<WORDLIST>

Remove all Number Sequences

$ head /usr/share/wordlists/rockyou.txt > <FILE>.txt
$ sed -i '/^1/d' <FILE>.txt

Username Anarchy

https://github.com/urbanadventurer/username-anarchy

$ ./username-anarchy -f first,first.last,last,flast,f.last -i <FILE>