-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgaruda.py
47 lines (46 loc) · 2.48 KB
/
garuda.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
msg=(
" __..-' \n"
" ________ ___ _.--'' \n"
" / _____/_____ _______ __ __ __| _/____ _...__..-' \n"
" / \ ___\__ \ \_ __ \ | \/ __ |\__ \ .' \n"
" \ \_\ \/ __ \_| | \/ | / /_/ | / __ \_ .' \n"
" \______ /____ /|__| |____/\____ |(____ / .' \n"
" \/ \/ \/ \/ .' \n"
" | \n"
" .------._ ; \n"
'------MENU------- .-"""`-.<'') `-._ . \n'
" (.--. _ `._ `'---.__.-' \n"
" 1) PORT Scannner ` `;'-.-' '- ._ \n"
" .--'`` '._ - ' . \n"
" 2) HoneyPot `""'-. `---' , \n"
" ''--..__ `\" \n"
" 3) Exit ``''---'`\ .' \n"
" `'. ' \n"
" `'. \n"
)
class bold_color: # Change colours according to your need
PURPLE = '\033[95m'
CYAN = '\033[96m'
DARKCYAN = '\033[36m'
BLUE = '\033[94m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
END = '\033[0m'
print(bold_color.GREEN)
print(msg)
if __name__ == "__main__":
while True:
menu=int(input("Choose : "))
if menu in range(1,4):
break
if menu==1:
import scan
scan.scanner()
elif menu==2:
import Honeypot
Honeypot.honey()
elif menu==3:
quit()