1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【悪用厳禁】超お手軽にzipファイルのパスワードをクラッキングする方法

Posted at

実行環境

M1 Macbook (Ventura 13.0.1)

John the Ripperとは

インストール

今回は手軽にhomebrewを使用します。
john もインストール可能ですが、 john-jumbo じゃないと zip2john が使用できないため注意。

$ brew install john-jumbo

基本は下記の場所に zip2johnなどの実行ファイルが存在しますが、バージョンなどの問題で変わる可能性があるので適宜変更してパスを通してください。

export PATH=$PATH:/opt/homebrew/Cellar/john-jumbo/1.9.0_1/share/john/

使用

$ zip2john xxx.zip > xxx.zip.hash

$ john xxx.zip.hash --incremental=ASCII

実行結果

ここではパスワード abcd1234 が出力されました。
--showオプションをつけるともっと見やすいみたいです。

Using default input encoding: UTF-8
Loaded 1 password hash (PKZIP [32/64])
Press 'q' or Ctrl-C to abort, almost any other key for status
abcd1234           (credentials.zip/credentials/token.txt)
1g 0:00:00:49 DONE (2022-12-26 11:20) 0.02008g/s 11589Kp/s 11589Kc/s 11589KC/s 3b88og..3b8dh5
Use the "--show" option to display all of the cracked passwords reliably
Session completed
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?