Python 的标准库提供了 ZIP 文件的提取压缩模块 zipfile,现在让我们试着用这个模块,暴力破解出加密的 ZIP 文件!我们可以用 extractall()这个函数抽取文件,密码正确则返回正确,密码错误测抛出异常.现在我们可以增加一些功能,将上面的单线程程序变成多线程的程序,来提高破解速度.两个程序代码如下,注释处为单线程代码,至于密码字典,请自己去搞吧,嘿嘿! # coding=UTF-8"""用字典暴力破解ZIP压缩文件密码"""
#凯撒密码第一个版本 #加密 pxpt=input("请输入明文文本:") for p in pxpt: if 'a'<=p<='z': print(chr(ord('a')+(ord(p)-ord('a')+3)%26),end='') elif 'A'<=p<='Z': print(chr(ord('A')+(ord(p)-ord('Z')+3)%26),end='') else: print(p,end='') #ord('a')+(ord(p)-ord(
1.openfire采用的加密方法 Blowfish.java /** * $RCSfile$ * $Revision: 3657 $ * $Date: 2002-09-09 08:31:31 -0700 (Mon, 09 Sep 2002) $ * * Adapted from Markus Hahn's Blowfish package so that all functionality is * in a single source file. Please visit the follo