質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
Windows 10

Windows 10は、マイクロソフト社がリリースしたOSです。Modern UIを標準画面にした8.1から、10では再びデスクトップ主体に戻され、UIも変更されています。PCやスマホ、タブレットなど様々なデバイスに幅広く対応していることが特徴です。

Windows 7

Microsoft Windows 7は過去にリリースされたMicrosoft WindowsのOSであり、Windows8の1代前です。2009年の7月にリリースされ販売されました。Windows7の前はWindowsVistaで、その更に3年前にリリースされました。

Linux

Linuxは、Unixをベースにして開発されたオペレーティングシステムです。日本では「リナックス」と呼ばれています。 主にWebサーバやDNSサーバ、イントラネットなどのサーバ用OSとして利用されています。 上位500のスーパーコンピュータの90%以上はLinuxを使用しています。 携帯端末用のプラットフォームAndroidは、Linuxカーネル上に構築されています。

Windows

Windowsは、マイクロソフト社が開発したオペレーティングシステムです。当初は、MS-DOSに変わるOSとして開発されました。 GUIを採用し、主にインテル系のCPUを搭載したコンピューターで動作します。Windows系OSのシェアは、90%を超えるといわれています。 パソコン用以外に、POSシステムやスマートフォンなどの携帯端末用、サーバ用のOSもあります。

パスワード

パスワードは主に情報にアクセスする際に扱われます。主に、アクセス可能なユーザーを限定する手段として使われます。

Q&A

0回答

3307閲覧

John the Ripperを使って辞書式攻撃を行い、パスワードハッシュからパスワードを特定したい

NodeTECH.

総合スコア0

Windows 10

Windows 10は、マイクロソフト社がリリースしたOSです。Modern UIを標準画面にした8.1から、10では再びデスクトップ主体に戻され、UIも変更されています。PCやスマホ、タブレットなど様々なデバイスに幅広く対応していることが特徴です。

Windows 7

Microsoft Windows 7は過去にリリースされたMicrosoft WindowsのOSであり、Windows8の1代前です。2009年の7月にリリースされ販売されました。Windows7の前はWindowsVistaで、その更に3年前にリリースされました。

Linux

Linuxは、Unixをベースにして開発されたオペレーティングシステムです。日本では「リナックス」と呼ばれています。 主にWebサーバやDNSサーバ、イントラネットなどのサーバ用OSとして利用されています。 上位500のスーパーコンピュータの90%以上はLinuxを使用しています。 携帯端末用のプラットフォームAndroidは、Linuxカーネル上に構築されています。

Windows

Windowsは、マイクロソフト社が開発したオペレーティングシステムです。当初は、MS-DOSに変わるOSとして開発されました。 GUIを採用し、主にインテル系のCPUを搭載したコンピューターで動作します。Windows系OSのシェアは、90%を超えるといわれています。 パソコン用以外に、POSシステムやスマートフォンなどの携帯端末用、サーバ用のOSもあります。

パスワード

パスワードは主に情報にアクセスする際に扱われます。主に、アクセス可能なユーザーを限定する手段として使われます。

0グッド

0クリップ

投稿2020/05/31 19:01

前提・実現したいこと

現在、ハッキング・ラボのつくりかたを見ながら、セキュリティーの勉強をしています。
Metasploit Frameworkを使い、Kali LinuxからMSEdge(windows10)にアクセスを行い、run hashdumpコマンドを実行しました。
パスワードハッシュの行をコピー&ペーストでテキストファイル"/home/[USERNAME]/hash.txt"に貼り付けて保存しました。
John the Ripperを使い、パスワードを解析するため、下記のコマンドを実行した際、本とは違う結果になりました。
本と同じように、john --wordlist=password.lst --format:nt hash.txtコマンドの実行時にPassw0rd!と表示させるにはどうしたらよいでしょうか?

発生している問題

kali@kali:~$ john hash.txt --show 0 password hashes cracked, 6 left kali@kali:~$ john --wordlist=/usr/share/john/password.lst --format:nt hash.txt Using default input encoding: UTF-8 Loaded 1 password hash (NT [MD4 256/256 AVX2 8x3]) Warning: no OpenMP support for this hash type, consider --fork=2 Press 'q' or Ctrl-C to abort, almost any other key for status (Administrator) 1g 0:00:00:00 DONE (2020-06-01 03:07) 100.0g/s 19200p/s 19200c/s 19200C/s 123456..knight Warning: passwords printed above might not be all those cracked Use the "--show --format=NT" options to display all of the cracked passwords reliably Session completed kali@kali:~$ sudo cp /usr/share/john/password.lst password.lst kali@kali:~$ sudo echo "Passw0rd!" >> password.lst bash: password.lst: Permission denied kali@kali:~$ sudo chmod a+rwx password.lst kali@kali:~$ sudo echo "Passw0rd!" >> password.lst kali@kali:~$ sudo john --wordlist=password.lst --format:nt hash.txt Created directory: /root/.john Using default input encoding: UTF-8 Loaded 1 password hash (NT [MD4 256/256 AVX2 8x3]) Warning: no OpenMP support for this hash type, consider --fork=2 Press 'q' or Ctrl-C to abort, almost any other key for status 【本ではココに"Passw0rd!"と表示される】 (Administrator) 1g 0:00:00:00 DONE (2020-06-01 03:09) 50.00g/s 9600p/s 9600c/s 9600C/s 123456..knight Warning: passwords printed above might not be all those cracked Use the "--show --format=NT" options to display all of the cracked passwords reliably Session completed morichan@kali:~$

###本での挙動

root@kali:~# john --wordlist=/usr/share/john/password.lst --format:nt hash.txt Using default input encoding: UTF-8 Loaded 3 password hashes with no different salts (NT [MD4 128/128 AVX 4x3]) Remaining 1 password hash Press 'q' or Ctrl-C to abort, almost any other key for status 0g 0:00:00:00 DONE (2018-07-27 23:10) 0g/s 88675p/s 88675c/s 88675C/s dirk..msfadmin Session completed root@kali:~# john --wordlist=password.lst --format:nt hash.txt Using default input encoding: UTF-8 Loaded 3 password hashes with no different salts (NT [MD4 128/128 AVX 4x3]) Remaining 2 password hashes with no different salts Press 'q' or Ctrl-C to abort, almost any other key for status Passw0rd! (Administrator) 1g 0:00:00:00 DONE (2018-07-27 23:05) 10.00g/s 35480p/s 35480c/s 70960C/s dirk..Passw0rd! Warning: passwords printed above might not be all those cracked Use the "--show" option to display all of the cracked passwords reliably Session completed

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

hoshi-takanori

2020/06/01 07:43

hash.txt の取得に失敗してるのか、john がそれを解析できないのか、問題の切り分けが必要ですね。
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問