├── LICENSE └── elpscrk.py /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 polym 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /elpscrk.py: -------------------------------------------------------------------------------- 1 | import time 2 | from random import randint 3 | 4 | class bcolors: 5 | HEADER = '\033[95m' 6 | OKBLUE = '\033[94m' 7 | OKGREEN = '\033[92m' 8 | WARNING = '\033[93m' 9 | FAIL = '\033[91m' 10 | ENDC = '\033[0m' 11 | BOLD = '\033[1m' 12 | UNDERLINE = '\033[4m' 13 | 14 | # Therapist, Ollie_Parker, Boyfriend_Therapist 15 | passwords = ['Dylan_2791', '123456seven', 'No match found'] 16 | keywords = ['Dylan; June 3rd, Stonehendge', '1984; 8D; Sa???', '2C;Yankees;Flipper'] 17 | listcounts = [42808, 9875894, 9875894] 18 | possibilities = [8768028, 9875894, 9875894] 19 | prompt = bcolors.OKBLUE + 'root@elliot:' + bcolors.ENDC + ' ' 20 | pos = randint(0,len(passwords)-1) 21 | start_time = time.time() 22 | print prompt + 'ping (222.12.154.102)' 23 | print prompt + 'ping (222.12.154.102) 56(84) bytes of data' 24 | print prompt + '64 bytes ev.e-bnk.org (222.12.154.102): icmp_req=1 ttl=11' 25 | time.sleep(1.25) 26 | print prompt + '1 packets transmitted, 1 received, 0% packet loss, time 0.' 27 | print prompt + 'elpscrk -list pswList.list-add ' + keywords[pos] 28 | print prompt + 'elpscrk -ip 222.12.154.102 -usr mich05654 -psw pswList.list' 29 | print prompt + 'List Count: '+str(listcounts[pos])+' Type: alphanum' 30 | for i in range(0, possibilities[pos], 13): 31 | print prompt + 'Scanning word ' + str(i) + ' of ' + str(possibilities[pos]) + '\r', 32 | print ' \r', 33 | print prompt + 'Scanning complete' 34 | print prompt + 'Time elapsed: ' + str(time.time() - start_time) 35 | print prompt + 'Password: ' + passwords[pos] 36 | # Quick git sign test 37 | # Quick blinking commit test 38 | --------------------------------------------------------------------------------