-
Notifications
You must be signed in to change notification settings - Fork 12
/
socialrecon.py
57 lines (52 loc) · 1.29 KB
/
socialrecon.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
import time
import sys
from url import urlinfo
from pdfanalysis import pdfinfo
from imagerecon import recon
from iplocator import iplocate
from TraceIP import read_multiple_ip
from webscrap import Links
from NameInfo import Nameinfo
from number import number
R = '\033[1;31;40m'
G = '\033[1;32;40m'
C = '\033[1;36;40m'
Y = '\033[1;33;40m'
def reconinput():
inp=(input("Info>> "))
if(inp == '1'):
recon()
elif (inp=='2'):
iplocate()
elif(inp=='3'):
read_multiple_ip()
elif(inp =='4'):
urlinfo()
elif (inp=='5'):
pdfinfo()
elif(inp=='6'):
Links()
elif (inp=='7'):
Nameinfo()
elif (inp=='8'):
number()
elif(inp=='exit'):
exit()
elif(inp=='tools'):
print(G+"""Tools available
1.Social media hunting using image
2.Trace Single IP
3.Heatmap
4.URL redirection checker
5.PDF meta data analysis
6.URL lookup in webpages
7.Information Gathering using Name
8.Phonenumber verifier
usage : type exit to stop
""")
else:
print(R+"Enter an valid option")
while True:
reconinput()
if __name__=="__main__":
reconinput()