Fadegentle WebSiteRSS

解密

John the Ripper

John 是一款带有各种工具字典的暴力解密器,GitHub 地址,OpenWall地址

  1. 自己编译或者使用包管理工具下载
    wget https://www.openwall.com/john/k/john-1.9.0.tar.gz  #下载安装包
    tar -xvf john-1.9.0.tar.gz & cd john-1.9.0/src
    make  # 查看可编译架构
    
  2. 编译
    make clean linux-arm64le
    cd ../run  # 编译后会有 john 等文件
    
  3. 破解
    ./unshadow /etc/passwd /etc/shadow > password.txt  # 将 shadow 文件导入 password.txt
    ./john password.txt  # 破解
    cat john.pot  # 查看
    

在 GitHub 上查看原文