
#!/usr/bin/python3
file = input(“==>”)
txt = file
key = “0123456789abcdef”
for i in txt:
if i not in key:
txt = txt.replace(i,”)
print(txt)


MD5解密网址 https://toolshu.com/crackmd5

文章来源于互联网:你以为是MD5吗,非法字符过滤

#!/usr/bin/python3
file = input(“==>”)
txt = file
key = “0123456789abcdef”
for i in txt:
if i not in key:
txt = txt.replace(i,”)
print(txt)


MD5解密网址 https://toolshu.com/crackmd5

文章来源于互联网:你以为是MD5吗,非法字符过滤