摘要:
将base64解码,对结果进行异或处理 import base64 a = "AAoHAR1WI1BRX1RQJ1AgJVdfI1VXJ1JTJ1BVXiIjVyRRIiMlJRs=" a = base64.b64decode(a) for i in range(128): s = '' for j 阅读全文
摘要:
import os names = os.listdir(r"文件夹路径") i=0 #i用于统计文件数量 f = open('password.txt','w') for filename in names: index = filename.rfind('.') name = filename[ 阅读全文