反向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跑

posted @ 2021-05-13 20:00  testadm1n  阅读(253)  评论(0编辑  收藏  举报