zoukankan      html  css  js  c++  java
  • Zip破解工具Fcrackzip使用简介

    0x00 fcrackzip简单介绍

       fcrackzip是一款专门破解zip类型压缩文件密码的工具,工具小巧方便、破解速度快,能使用字典和指定字符集破解,适用于linux、mac osx 系统

    0x01 fcrackzip安装

       指令:brew install fcrackzip

    0x02 fcrackzip参数介绍

    Kali系统输入 fcrackzip-h得到工具的使用帮助如下:

    • fcrackzip version 1.0, a fast/free zip password cracker
    • ·  written by Marc Lehmann <pcg@goof.com> You can find more info on
    • ·  http://www.goof.com/pcg/marc/
    • ·  USAGE: fcrackzip
    • ·  [-b|--brute-force] use brute force algorithm
    • ·  [-D|--dictionary] use a dictionary
    • ·  [-B|--benchmark] execute a small benchmark
    • ·  [-c|--charset characterset] use characters from charset
    • ·  [-h|--help] show this message
    • ·  [--version] show the version of this program
    • ·  [-V|--validate] sanity-check the algortihm
    • ·  [-v|--verbose] be more verbose
    • ·  [-p|--init-password string] use string as initial password/file
    • ·  [-l|--length min-max] check password with length min to max
    • ·  [-u|--use-unzip] use unzip to weed out wrong passwords
    • ·  [-m|--method num] use method number "num" (see below)
    • ·  [-2|--modulo r/m] only calculcate 1/m of the password
    • ·  file... the zipfiles to crack
    • ·  methods compiled in (* = default):
    • ·  0: cpmask
    • ·  1: zip1
    • ·  *2: zip2, USE_MULT_TAB

    0x03 fcrackzip使用案例

      ·  lysmacbookair:Desktop laoyan$ fcrackzip  -b -c 'aA1' -l 1-10   -u 123lybbn.zip

    • ·  PASSWORD FOUND!!!!: pw == qsb

    参数解释:

    • -b 表示使用暴利破解的方式
    • ·  -c 'aA1' 表示使用大小写字母和数字混合破解的方式
    • ·  -l 1-10 表示需要破解的密码长度为1到10位
    • ·  -u 表示只显示破解出来的密码,其他错误的密码不显示出

    如果要添加字典:

      lysmacbookair:Desktop laoyan$ fcrackzip  -D -p lybbnpass.txt  -u 123lybbn.zip

     PASSWORD FOUND!!!!: pw == qsb

    -D 表示要使用字典破解

    -p 表示要使用那个字典破解

    参考链接:https://blog.csdn.net/hp910315/article/details/82711872

  • 相关阅读:
    bzoj3771 Triple
    【BZOJ-1597】土地购买 DP + 斜率优化
    【BZOJ-1911】特别行动队 DP + 斜率优化
    【BZOJ-3144】切糕 最小割-最大流
    【BZOJ-2095】Bridge 最大流 + 混合图欧拉回路 + 二分
    【BZOJ-3996】线性代数 最小割-最大流
    【BZOJ-1497】最大获利 最大流
    【BZOJ-1500】维修数列 Splay
    【BZOJ-1458】士兵占领 最大流
    【BZOJ-3626】LCA 树链剖分
  • 原文地址:https://www.cnblogs.com/2f28/p/9737113.html
Copyright © 2011-2022 走看看