def main(arg):
salt = '$6$Mqe5XrQt'
hashed_pass = arg
with open(DICT_FILE) as f:
for line in reversed(f.readlines()):
line = line.strip()
print(line)
print(salt)
print(hashed_pass == """$6$Mqe5XrQt$4Y34YRjp5bD/3ROR9OnwrFSqKurE7WvmpZGkkmIvwVHaFSH802PwaC0ViMMKQDvFhWtDRx2RSm8tQv6rj5E9B1""")
if crypt.crypt(hashed_pass, salt) == hashed_pass:
print(line)
评论列表
文章目录