John the Ripper
Completion requirements
https://www.nsl.tuis.ac.jp/xoops/modules/xpwiki/?John%20the%20Ripper
実験データの作成
#include <stdio.h> #include <crypt.h> main() { printf("%s:%s\n", "user0", crypt("cat", "$1$h6fClOs1$")); printf("%s:%s\n", "user1", crypt("orange", "$5$cHyfrqRbMS1eH0ka$")); printf("%s:%s\n", "user2", crypt("silver", "$6$sbx23klssOglPPgh$")); }
コンパイル
gcc crypt.c -o crypt -lcrypt
実行結果
john の実行結果は john.pot に保存される.
./john パスワードファイル
./john パスワードファイル --format=crypt
Last modified: Thursday, 5 December 2024, 10:06 AM