└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # JavaScript-BruteForce 2 | 3 | This is a simple brute force using JavaScript
4 | You can try this script with Chrome DevTools/JavaScript Console
5 | The Default Charset is "0123456789abcdefghijklmnopqrstuvwxyz"(Base 36)
6 | in this example we set min string length to 4 (start from 'aaaa') and max string length to 6 (until 'zzzzzz')
7 | 8 | Simply copy and paste this script into JavaScript Console:
9 | for(i=parseInt("aaaa", 36);i++<=parseInt("zzzzzz", 36);console.log(i.toString(36))); 10 | --------------------------------------------------------------------------------