-
Notifications
You must be signed in to change notification settings - Fork 12
/
whoUR.py
executable file
·50 lines (43 loc) · 1.56 KB
/
whoUR.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
import sys, os
import argparse
import urllib3, urllib
import re
# Modules
from libs.colors import *
from libs.selectChoice import select_choice
Parser = argparse.ArgumentParser(prog='whoUR.py', description='Tool for information gathering')
'''
this has been use in the future
Parser.add_argument('-d', '--dic-path', help='Dictonaries Path, Example: -d /root/', action='store', default='dicts/', dest='dicPath')
Parser.add_argument('-a', '--dic-adminspage', help='Admin Page dictonary, Example: -a adminspage.txt', action='store', default='adminspage.txt', dest='dicAdminsPage')
Args = Parser.parse_args()
# Dictonaries
dic_adminsPage = Args.dicPath +'/'+ Args.dicAdminsPage
'''
def main():
print('\n')
print(B+' _ ___ ')
print(B+' __ __ | |__ ___ _ _ _ __ |__ \ ')
print(B+' \ \ /\ / / | \_ \ / _ \ | | | | | |__| / / ')
print(B+' \ V V / | | | | | (_) | | |_| | | | |_| ')
print(B+' \_/\_/ |_| |_| \___/ \__,_| |_| (_) ')
print('\n')
print(lC+'Beta 1.6 JopCode')
print('\n')
select_choice()
print(lG+'\n---------')
print(lG+'- C Y A -')
print(lG+'---------\n')
print(lR+'[+] Script by JopCode\n')
if __name__ == '__main__':
try:
main()
except KeyboardInterrupt:
print(lG+'\n---------')
print(lG+'- C Y A -')
print(lG+'---------\n')
print(lR+'[+] Script by JopCode\n')
try:
sys.exit(0)
except SystemExit:
os._exit(0)