前提・実現したいこと
現在、ハッキング・ラボのつくりかたを見ながら、セキュリティーの勉強をしています。
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
あなたの回答
tips
プレビュー