Created
August 7, 2013 05:37
Revisions
-
itsthejoker revised this gist
Aug 7, 2013 . 1 changed file with 10 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,8 +6,13 @@ uppercase_chars = list("ABCDEFGHIJKLMNOPQRSTUVWXYZ") number_chars = list("0123456789") symbol_chars = list("!@#$%^&*()`~-_=+\\;[]{};:\",.<>/?\'") homoglyph_sym_chars = list("!ǃ!״″"$$%%&&''(﹝()﹞)*⁎*+\ +,‚,- ‐ 䐠- ᅠ ㅤ. ٠ ۔ ܁܂․‧。.。/ ̸⁄∕╱⫻⫽/ノ0OoΟοОоՕРᠠOo\ 1Iا12 2334455667Рᰠ78Ց899:։܃܄∶꞉;;;<‹<= 䀠=>›>?\ ?@@[[\\]]^^__``{{|ǀا|}}~⁓~") homoglyph_alpha_chars = list("AaÀÁÂÃÄÅàáâãäåɑΑαаᎪAaBbßʙΒβВЬᏴ\ ᛒBbCcϲϹСсᏟⅭⅽРꀠCcDdĎďĐđԁժᎠⅮⅾDdEeÈÉÊËéêëĒēĔĕĖėĘĚěΕЕеᎬEe\ FfϜFfGgɡɢԌնᏀGgHhʜΗНһᎻHhIilɩΙІіاᎥᛁⅠⅰРఠIJjϳЈјյᎫJKkΚκКᏦ\ ᛕKKkLlʟιاᏞⅬⅼLlMmΜϺМᎷᛖⅯⅿMmNnɴΝNn0OoΟοОоՕРᠠOoPpΡρРрᏢPp\ QqႭႳQqRrʀԻᏒᚱRrSsЅѕՏႽᏚР堠SsTtΤτТᎢTtUuμυԱՍ⋃UuVvνѴѵᏙⅤⅴ\ VvWwѡᎳWwXxΧχХхⅩⅹXxYyʏΥγуҮYyZzΖᏃZzßӧÄӒÖӦ") -
itsthejoker created this gist
Aug 7, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ #!/usr/bin/python # This is a lists module of different types of data to be called for a # brute-forcing attack. lowercase_chars = list("abcdefghijklmnopqrstuvwxyz") uppercase_chars = list("ABCDEFGHIJKLMNOPQRSTUVWXYZ") number_chars = list("0123456789") symbol_chars = list("!@#$%^&*()`~-_=+\\;[]{};:\",.<>/?\'") homoglyph_sym_chars = list("!ǃ!״″"$$%%&&''(﹝()﹞)*⁎*++,‚,- ‐ 䐠- ᅠ ㅤ. ٠ ۔ ܁܂․‧。.。/ ̸⁄∕╱⫻⫽/ノ0OoΟοОоՕРᠠOo\ 1Iا12 2334455667Рᰠ78Ց899:։܃܄∶꞉;;;<‹<= 䀠=>›>??@@[[\\]]^^__``{{|ǀا|}}~⁓~") homoglyph_alpha_chars = list("AaÀÁÂÃÄÅàáâãäåɑΑαаᎪAaBbßʙΒβВЬᏴᛒBbCcϲϹСсᏟⅭⅽРꀠCcDdĎďĐđԁժᎠⅮⅾDdEeÈÉÊËéêëĒēĔĕĖėĘĚěΕЕеᎬEe\ FfϜFfGgɡɢԌնᏀGgHhʜΗНһᎻHhIilɩΙІіاᎥᛁⅠⅰРఠIJjϳЈјյᎫJKkΚκКᏦᛕKKkLlʟιاᏞⅬⅼLlMmΜϺМᎷᛖⅯⅿMmNnɴΝNn0OoΟοОоՕРᠠOoPpΡρРрᏢPp\ QqႭႳQqRrʀԻᏒᚱRrSsЅѕՏႽᏚР堠SsTtΤτТᎢTtUuμυԱՍ⋃UuVvνѴѵᏙⅤⅴVvWwѡᎳWwXxΧχХхⅩⅹXxYyʏΥγуҮYyZzΖᏃZzßӧÄӒÖӦ")