forked from sinoobie/toolsederhana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHacking.py
80 lines (73 loc) · 1.85 KB
/
Hacking.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
74
75
76
77
78
79
80
import os
import sys
from time import sleep as timeout
from core.starkmcore import *
from core.deepmcore import *
from multiprocessing import Process
from termcolor import colored
def menu():
os.system("clear")
print(colored("""
..######..########....###....########..##....##
.##....##....##......##.##...##.....##.##...##.
.##..........##.....##...##..##.....##.##..##..
..######.....##....##.....##.########..#####...
.......##....##....#########.##...##...##..##..
.##....##....##....##.....##.##....##..##...##.
..######.....##....##.....##.##.....##.##....##
>>CREATED BY MUHAMMAD FAZRIANSYAH
>>STATUS : MENUNGGU KEPASTIAN DARI DIA
>>26124<<
>>>HACKING TERUS JADIAN NYA KAPAN<<<
===============================================
1. Account Hacking
2. Information Gathering
3. Website Hacking
4. Termux
5. Error Fixer
6. Update
7. About
8. DeepStore
9. Generate Payload
================================================
10. EXIT
""", 'green'))
loop = True
while loop:
menu()
stark = raw_input("stark > ")
if stark == "1":
os.system("clear")
achacking()
elif stark == "2":
os.system("clear")
info()
elif stark == "3":
os.system("clear")
webhacking()
elif stark == "4":
os.system("clear")
termux()
elif stark == "5":
os.system("clear")
Fix()
elif stark == "6":
os.system("chmod +x update")
os.system("./update")
elif stark == "7":
About()
elif stark == "8":
os.system("clear")
deepstore()
elif stark == "9":
print (colored("under progress...", 'green'))
timeout(3)
restartprogram()
elif stark == "10":
sys.exit()
elif stark == "0":
restartprogram()
else:
print (colored("ERROR: WRONG COMMAND BRO.?", 'red'))
timeout(2)
restartprogram()