-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathdisplay.py
35 lines (24 loc) · 850 Bytes
/
display.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
class Display:
def __init__(self):
self.appName = "ExploitSearch"
self.mainMenu()
def mainMenu(self):
titleArt = """
___ _ _ _ ___ _
| ____ ___ __| |___(_| |_ / __|___ __ _ _ _ __| |_
| _|\ \ | '_ | / _ | | _| \__ / -_/ _` | '_/ _| ' \
|___/_\_| .__|_\___|_|\__| |___\___\__,_|_| \__|_||_|
|_|
"""
menu = """
____________________________________
| |
| Options |
| |
| 1. Search Shodan DB |
| 2. Search Offensive Security DB |
| 3. Exit |
|____________________________________|
"""
print(titleArt,end="")
print(menu)