-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathsploit.py
More file actions
67 lines (29 loc) · 943 Bytes
/
sploit.py
File metadata and controls
67 lines (29 loc) · 943 Bytes
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
import os, sys
print ("\033[1;34mSilahkan Masukkan ID & Password My-Tools")
print ("\033[1;35matau silahkan Hubungi 081316577616 ")
print ("\033[1;32mJgn Ngasal Cok ntr salah ")
ID = 'TheSploit1109001'
password = 'Sploit1109001'
def restart():
ngulang = sys.executable
os.execl(ngulang, ngulang, *sys.argv)
def main():
uname = raw_input("ID : ")
if uname == ID:
pwd = raw_input("password : ")
if pwd == password:
print "\034[1;32mSuksess Login To My-Tools..",
sys.exit()
else:
print "\033[1;32mMaaf Password Anda Salah Silahkeun Coba Lagi... [?]\033[00m"
print "Silahkan log-in kembali untuk Masuk ke My-Tools...!!\n"
restart()
else:
print "\033[1;32mMaaf ID Anda salah Silahkeun Check Kembali Untuk Masuk... [?]\033[00m"
print "Silahkan log-in kembali untuk Login ke My-Tools...!!\n"
restart()
try:
main()
except KeyboardInterrupt:
os.system('clear')
restart()