压缩包密码破解示例分享(类似典破解)


Posted in Python onJanuary 17, 2014

昨天翻硬盘,找到一个好东西,可惜自己加了密码自己不记得了。试了几个常用的没试出来,于是写了这么个小脚本来替我尝试。。呵呵,还真给解出来了。
python脚本内容如下,跑跑自己加密的压缩包还不错

# -*- coding: utf-8 -*-import sys,os
def IsElementUniq(list):
    """
          判断list中的元素是否为唯一的
    """
    for word in list:
        if list.count(word)>1:
            return False
    return True
def GenPswList():
    """
          要求用户输入词,并根据单词组合密码,只尝试四个单词来组合,并限制密码长度为20。写的比较挫
    """
    psw=raw_input('input a word>')
    wordlist = []
    while psw:
        wordlist.append(psw)
        psw=raw_input('input a word>')
    print wordlist
    global g_pswlist
    g_pswlist = []
    for word in wordlist:
        g_pswlist.append(word)
    for word1 in wordlist:
        for word2 in wordlist:
            locallist = [word1, word2]
            if IsElementUniq(locallist):
                tmp = word1 + word2
                if len(tmp) < 20:
                    g_pswlist.append(tmp)
    for word1 in wordlist:
        for word2 in wordlist:
            for word3 in wordlist:
                locallist = [word1, word2, word3]
                if IsElementUniq(locallist):
                    tmp = word1 + word2 + word3
                    if len(tmp) < 20:
                        g_pswlist.append(tmp)
    for word1 in wordlist:
        for word2 in wordlist:
            for word3 in wordlist:
                for word4 in wordlist:
                    locallist = [word1, word2, word3, word4]
                    if IsElementUniq(locallist):
                        tmp = word1 + word2 + word3 + word4
                        if len(tmp) < 20:
                            g_pswlist.append(tmp)
    print 'gen psw is:', g_pswlist
def TestUnZipPack(filename):
    """
          尝试用密码来解压压缩包
    """
    command = ""
    for psw in g_pswlist:
        command = "7z e -p%s -y %s" %(psw,filename)
        print command
        ret = os.system(command)
        if ret == 0:
            print 'right psw is ', psw
            break
def main(filename):
    GenPswList()
    TestUnZipPack(filename)
if __name__ == '__main__':
    if len(sys.argv) != 2:
        print 'argv error'
        print 'example:test_7z_psw.py 1.7z'
        sys.exit(1)
    main(sys.argv[1])
Python 相关文章推荐
Python自动登录126邮箱的方法
Jul 10 Python
Python的for和break循环结构中使用else语句的技巧
May 24 Python
不可错过的十本Python好书
Jul 06 Python
Django中的Model操作表的实现
Jul 24 Python
详解用python写一个抽奖程序
May 10 Python
Python爬虫实现验证码登录代码实例
May 10 Python
Python Tkinter模块 GUI 可视化实例
Nov 20 Python
TensorFlow获取加载模型中的全部张量名称代码
Feb 11 Python
Python装饰器实现方法及应用场景详解
Mar 26 Python
使用python matplotlib 画图导入到word中如何保证分辨率
Apr 16 Python
详解KMP算法以及python如何实现
Sep 18 Python
用python批量移动文件
Jan 14 Python
vc6编写python扩展的方法分享
Jan 17 #Python
python的urllib模块显示下载进度示例
Jan 17 #Python
Python中for循环详解
Jan 17 #Python
python在命令行下使用google翻译(带语音)
Jan 16 #Python
python支持断点续传的多线程下载示例
Jan 16 #Python
python获得图片base64编码示例
Jan 16 #Python
python练习程序批量修改文件名
Jan 16 #Python
You might like
php daodb插入、更新与删除数据
2009/03/19 PHP
PHP的cURL库功能简介 抓取网页、POST数据及其他
2011/04/07 PHP
ubuntu10.04配置 nginx+php-fpm模式的详解
2013/06/03 PHP
PHP rawurlencode与urlencode函数的深入分析
2013/06/08 PHP
PHP生成sitemap.xml地图函数
2013/11/13 PHP
PHP中浮点数计算比较及取整不准确的解决方法
2015/01/09 PHP
php实现递归的三种基本方式
2020/07/04 PHP
微信公众平台开发之配置与请求
2015/08/26 PHP
ThinkPHP自定义Redis处理SESSION的实现方法
2016/05/16 PHP
PHP 实现页面静态化的几种方法
2017/07/23 PHP
js 关于=+与+=日期函数使用说明(赋值运算符)
2011/11/15 Javascript
Javascript 页面模板化很多人没有使用过的方法
2012/06/05 Javascript
JavaScript Ajax Json实现上下级下拉框联动效果实例代码
2013/11/23 Javascript
jQuery Mobile操作HTML5的常用函数总结
2016/05/17 Javascript
JavaScript中误用/g导致的正则test()无法正确重复执行的解决方案
2016/07/27 Javascript
BootStrap无限级分类(无限极分类封装版)
2016/08/26 Javascript
深入理解JavaScript中的预解析
2017/01/04 Javascript
AngularJS模态框模板ngDialog的使用详解
2018/05/11 Javascript
微信小程序时间选择插件使用详解
2018/12/28 Javascript
vue+django实现一对一聊天功能的实例代码
2019/07/17 Javascript
vue.js中ref和$refs的使用及示例讲解
2019/08/14 Javascript
解决pycharm双击但是无法打开的情况
2020/10/31 Javascript
Python3字符串学习教程
2015/08/20 Python
CentOS中升级Python版本的方法详解
2017/07/10 Python
python如何在列表、字典中筛选数据
2018/03/19 Python
Python实现的银行系统模拟程序完整案例
2019/04/12 Python
Django DRF路由与扩展功能的实现
2020/06/03 Python
python+appium+yaml移动端自动化测试框架实现详解
2020/11/24 Python
matplotlib 使用 plt.savefig() 输出图片去除旁边的空白区域
2021/01/05 Python
戴尔加拿大官网:Dell加拿大
2016/09/17 全球购物
马来西亚在线健康商店:Medipal Malaysia
2020/04/13 全球购物
生产部统计员岗位职责
2014/01/05 职场文书
八荣八耻演讲稿
2014/09/15 职场文书
音乐会主持人开场白
2015/05/28 职场文书
2016高中社会实践心得体会范文
2016/01/14 职场文书
如何在C++中调用Python
2021/05/21 Python