shell_explore.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:python 作者: micronicstraining 项目源码 文件源码
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)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号