反向md5

import hashlib
 
def md5(s):
    return hashlib.md5(s.encode("utf8")).hexdigest()
 
for i in range(1, 9999999):
    if md5(str(i)).startswith('0e'):
        print(i)

直接更改startswith后面的0e内容就可以,然后python3跑

别人都在不停的努力,自己又怎么会停
原文地址:https://www.cnblogs.com/chenyouxiu/p/14766004.html