-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhase01-Part02.py
75 lines (59 loc) · 2.21 KB
/
Phase01-Part02.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
import itertools
import string
import time
attemps = 0
def bruteforce_cracker(password, mode, character_set, k):
global attemps
digits = '0123456789'
digits_and_lower = '0123456789abcdefghijklmnopqrstuvwxyz'
lower = 'abcdefghijklmnopqrstuvwxyz'
all = string.printable
if int(character_set) == 1:
chars = digits
elif int(character_set) == 2:
chars = digits_and_lower
elif int(character_set) == 3:
chars = lower
else:
chars = all
if int(mode) == 1:
for combination in itertools.product(chars, repeat=len(password)):
# Join the characters in the combination to form a password candidate
candidate = "".join(combination)
attemps += 1
# Check if the candidate matches the password
if candidate == password:
return candidate
else:
for length in range(1, len(password) + 1 - int(k)):
for combination in itertools.product(chars, repeat=length):
# Join the characters in the combination to form a password candidate
candidate = "".join(combination)
attemps += 1
# Check if the candidate matches the password
if candidate == password[-(len(password) - int(k)):]:
return password[:int(k)] + candidate
print("Working modes: ")
print("1: Standard mode providing only length of passwprd ")
print("2: Search mode providing only first character of password ")
print("3: Search mode providing only k character of password ")
mode = input("Insert your mode: ")
print()
print("Choose k: 0 for mode 1, 1 for mode 2, and k for mode 3")
k = input("Insert k: ")
print()
print("Chatcter sets: ")
print("1: only digit")
print("2: only digit and lowercase alphabet")
print("3: only lowercase alphabet")
print("4: any type of character")
character_set = input("Insert your character set: ")
print()
password = input("Insert your password: ")
print()
start = time.time()
cracked_password = bruteforce_cracker(password, mode, character_set, k)
end = time.time()
print("Cracked password is: ", cracked_password)
print("Number of attemps: ", attemps)
print("Time taken: ", end - start)