2022Python最新彩虹表(1)

大家好,我是尘风。今天这期博客给大家带来的是2022Python最新实现彩虹表。

废话不多说,直接上代码。

本人制作的2022年最新彩虹表,下载请前往网络安全-加密-彩虹表-表-网络安全文档类资源-CSDN下载

下载资源

import hashlib
 
dict_do = {}
 
for a in range(10):
    for b in range(10):
        for c in range(10):
            for d in range(10):
                for e in range(10):
                    for f in range(10):
                        for g in range(10):
                            for h in range(10):
                                ohh2 = str(a)+str(b)+str(c)+str(d)+str(e)+str(f)+str(g)+str(h)                 
                                print(ohh2)
                                md5 = hashlib.md5(ohh2.encode())
                                ohh3 = md5.hexdigest()
                                dict_do[ohh2] = ohh3
                                print(dict_do)

本期就到此为止啦。

猜你喜欢

转载自blog.csdn.net/gxlcf_516312/article/details/126497232