Leetgen¶
Leetgen is a quick-and-dirty password list generator. It accepts a single input string and generates a wordlist of possible "leetspeak" permutations for that string. Helpful if you suspect there's a very high likelihood that someone is or will use a password based off of a well-known phrase or word. This is most commonly seen in organizations where they have their own internal phraseology or idioms.
Run from the command-line, supply it with a single string and it will return a count of the calculated permutations.
Be aware, however, that because there could be many possible iterations, lists can grow quite large and eat up available space. If allowed to generate the file, it will be saved to output.txt
in the same directory as the script file.
Don't be a dick...
This tool has it's uses, but unapproved pentesting and other nefarious practices aren't one of them. This tool is meant for helping build lists of passwords that systems should block or prevent users from adopting due to poor security.
Script¶
Leetgen.py | |
---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
|
Extending Results¶
Modifying the script is straightforward - leet_matches
(beginning on line 15) is a list of lists of characters. The list includes every letter of alphabet, followed by numbers, then special characters. Each list is individually extended to include potential characters that might be substituted for the original character.
The character mapping included in original script is not complete - there could be dozens more potential mappings, so feel free to modify to suit your needs.