-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
82 lines (78 loc) · 2.34 KB
/
Copy pathmain.py
File metadata and controls
82 lines (78 loc) · 2.34 KB
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
81
82
import itertools,hashlib,os
nam=list(map(str, input().rstrip().split()))
def w1(nam,h):
permutations=itertools.permutations(nam,1)
final_list=[]
m=0
for permutation in permutations:
final_list.append(permutation[0])
for key in final_list:
print("TRYING " +key)
m=m+1
result=hashlib.md5(key.encode())
if h==str(result.hexdigest()):
print("THE PASS IS > " +key)
print (m)
os._exit(0)
def w2(nam,h):
permutations=itertools.permutations(nam,2)
final_list=[]
m=0
for permutation in permutations:
final_list.append(permutation[0]+permutation[1])
for key in final_list:
print("TRYING " +key)
m=m+1
result=hashlib.md5(key.encode())
if h==str(result.hexdigest()):
print("THE PASS IS > " +key)
print (m)
os._exit(0)
def w3(nam,h):
permutations=itertools.permutations(nam,3)
final_list=[]
m=0
for permutation in permutations:
final_list.append(permutation[0]+permutation[1]+permutation[2])
for key in final_list:
print("TRYING " +key)
m=m+1
result=hashlib.md5(key.encode())
if h==str(result.hexdigest()):
print("THE PASS IS > " +key)
print (m)
os._exit(0)
def w4(nam,h):
permutations=itertools.permutations(nam,4)
final_list=[]
m=0
for permutation in permutations:
final_list.append(permutation[0]+permutation[1]+permutation[2]+permutation[3])
for key in final_list:
print("TRYING " +key)
m=m+1
result=hashlib.md5(key.encode())
if h==str(result.hexdigest()):
print("THE PASS IS > " +key)
print (m)
os._exit(0)
def w5(nam,h):
permutations=itertools.permutations(nam,5)
final_list=[]
m=0
for permutation in permutations:
final_list.append(permutation[0]+permutation[1]+permutation[2]+permutation[3]+permutation[4])
for key in final_list:
print("TRYING " +key)
m=m+1
result=hashlib.md5(key.encode())
if h==str(result.hexdigest()):
print("THE PASS IS > " +key)
print (m)
os._exit(0)
h=str(input("ENTER HASH TO CRACK > ")).lower()
w1(nam ,h)
w2(nam ,h)
w3(nam ,h)
w4(nam ,h)
w5(nam ,h)