-
Notifications
You must be signed in to change notification settings - Fork 14
/
godzilla.py
60 lines (51 loc) · 1.83 KB
/
godzilla.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
58
59
60
#!/usr/bin/python
from scripts.openman import openfunc
from scripts.portscanner import portfunc
from scripts.subnet_scanner import subnet
from scripts.http_sniffer import snifffunc
from scripts.Arp_Spoofing import arpfunc
from scripts.xss import xssfunc
from scripts.sqlinj import sqlfunc
import colorama
from colorama import Fore, Back, Style
colorama.init()
print Fore.BLUE +"""
^\ ^
/ \\ / \
/. \\/ \ |\___/|
*----* / / | \\ \ __/ O O\
| / / / | \\ \_\/ \ \
/ /\/ / / | \\ _\/ '@___@
/ / / / | \\ _\/ |U
| | / / | \\\/ |
\ | /_ / | \\ ) \ _|_
\ \ ~-./_ _ | .- ; ( \_ _ _,\'
~ ~. .-~-.|.-* _ {-,
\ ~-. _ .-~ \ /\'
\ } { .*
~. '-/ /.-~----.
~- _ / >..----.\\\"""+
~ - - - - ^}_ _ _ _ _ _ _.-\\\"""+
\n"""+Style.RESET_ALL
print Fore.YELLOW +"[#][1] "+Style.RESET_ALL+"Port Scanner"
print Fore.YELLOW +"[#][2] "+Style.RESET_ALL+"XSS Scanner"
print Fore.YELLOW +"[#][3] "+Style.RESET_ALL+"Open Redirect Scanner"
print Fore.YELLOW +"[#][4] "+Style.RESET_ALL+"HTTP Sniffer "
print Fore.YELLOW +"[#][5] "+Style.RESET_ALL+"Arp Poisner "
print Fore.YELLOW +"[#][6] "+Style.RESET_ALL+"Subnet Scanner"
print Fore.YELLOW +"[#][7] "+Style.RESET_ALL+"Sql Injection Scanner\n"
attack = raw_input("enter your atack number: ");
if attack == "3":
openfunc()
elif attack == "1":
portfunc()
elif attack == "2":
xssfunc()
elif attack == "4":
snifffunc()
elif attack == "6":
subnet()
elif attack == "5":
arpfunc()
elif attack == "7":
sqlfunc()