
Originally Posted by
badongoq
Hi
What am I doing wrong?
-I've tried dual-boot and livecd; doesn't work on either
-I try this command:
cd /pentest/passwords/john
./john
john --wordlist=something.txt --format=raw-md5 database.txt
Hi,
most likely there is something wrong with your database.txt. To test your istallation try:
Code:
echo password | md5sum | awk '{print $1}' > testfile.txt
this will generate a testfile with a known entry
generate a wordlist by
Code:
echo password > testwl.txt
and run
Code:
./john --wordlist=testwl.txt --format=raw-MD5 testfile.txt
If the password is cracked JTR is working fine.
Best regards