-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathpassword-cracker.py
49 lines (37 loc) · 1.26 KB
/
password-cracker.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
#!/usr/bin/env python3
import sys
sys.setrecursionlimit(20000)
def mature_check(passwords, attempt):
allpass = "".join(passwords)
res = True
for letter in attempt:
if letter not in allpass:
res = False
break
return res
def password_cracker(passwords, attempt, solution, memo):
#print("solution = {} attempt = {} memo = {}".format(solution, attempt, memo))
if len(attempt) == 0:
return True
if attempt in memo:
return False
for psw in passwords:
if attempt.startswith(psw):
solution.append(psw)
memo[attempt] = True
if password_cracker(passwords, attempt[len(psw):], solution, memo) == True:
return True
solution.pop()
return False
if __name__ == "__main__":
t = int(input().strip())
for a0 in range(t):
n = int(input().strip())
passwords = input().strip().split(' ')
attempt = input().strip()
solution = []
memo = {}
if mature_check(passwords, attempt) and password_cracker(passwords, attempt, solution, memo):
print(" ".join(solution))
else:
print("WRONG PASSWORD")