crypto/credstuff
This commit is contained in:
13
crypto/credstuff/solve.py
Executable file
13
crypto/credstuff/solve.py
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import codecs
|
||||
|
||||
with open('usernames.txt', 'r') as f:
|
||||
usernames = f.read().strip().splitlines()
|
||||
|
||||
with open('passwords.txt', 'r') as f:
|
||||
passwords = f.read().strip().splitlines()
|
||||
|
||||
password = next(p for u,p in zip(usernames, passwords) if u == 'cultiris')
|
||||
|
||||
print(codecs.decode(password, 'rot_13'))
|
Reference in New Issue
Block a user