crypto/credstuff

This commit is contained in:
2024-09-02 23:37:59 +02:00
parent d6dcd35aa4
commit 8ad492d0a6
3 changed files with 1023 additions and 0 deletions

13
crypto/credstuff/solve.py Executable file
View 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'))