credstuff
with open('leak/usernames.txt', 'r') as f:
user = f.readlines()
with open('leak/passwords.txt', 'r') as f:
pwd = f.readlines()
for i in range(len(user)):
if user[i].strip() == 'cultiris':
print(pwd[i].strip())Last updated