-
Notifications
You must be signed in to change notification settings - Fork 2
/
OverwatchINT.py
49 lines (43 loc) · 1.93 KB
/
OverwatchINT.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
from SocialInfoga.SocialInfoga import reconinput
import WebVulture.WebVulture as wv
from PenTest import PenTest as pt
from Dr_Forensics import Forensics as dfir
from Hide_n_Secure import Steganography as stg
cyan = "\033[1;36;40m"
green = "\033[1;32;40m"
red = "\033[1;31;40m"
Y = "\033[1;33;40m"
def main():
if a == 1:
reconinput()
elif a == 2:
wv.main()
elif a == 3:
pt.main()
elif a == 4:
stg.main()
elif a == 5:
dfir.forensics()
if __name__ == "__main__":
print(cyan + """
$$$$$$ $$ $$ $$$$$$ $$$ $$ $$$$$$$$
$$ $$ $$ $$ $$ $$$$ $$ $$
$$ $$ $$ $$ $$$$$ $$ $$ $$ $$ $$$$$$$ $$ $$$$$$ $$ $$ $$ $$ $$ $$
$$ $$ $$ $$ $$ $$ $$ $$ $$ $$ $$ $$$$ $$ $$ $$$ $$ $$ $$ $$ $$
$$ $$ $$ $$ $$$$$$$$ $$$ $$ $$ $$ $$$$$$ $$ $$ $$$ $$ $$ $$ $$ $$ $$
$$ $$ $ $ $$ $$$ $$$$ $$$$ $$ $$ $$ $$ $$ $$ $$ $$ $$$$ $$
$$$$$$ $$ $$$$$$$ $$$ $$$ $$ $$$$$$ $$$$ $$$$$$ $$ $$ $$$$$$ $$ $$$ $$
""")
print(Y + " Created by : Jagdish Patil")
print(Y + " Github: https://www.https://github.com/JagdishPatil2111")
print(green + """
Available Modules
1. Information Gathering
2. Web Vulnerability Scanning
3. Penetration Testing
4. Steganography
5. Digital Forensics
""")
print(Y + "Note: In Information Gathering, type 'tools' to find tools.")
a = int(input("What would you like to do: "))
main()