From charlesreid1

(Created page with "=Problems= Started running into problems immediately, trying to dump generated passwords to stdout using John. Illegal inputs, or some baloney. In any case, my workaround wa...")
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 12: Line 12:
$ unzip JohnTheRipper-jumbo-1.8.zip
$ unzip JohnTheRipper-jumbo-1.8.zip
</pre>
</pre>
==Install OpenSSL Development Libs==


Now install OpenSSL development headers before we install John the Ripper:
Now install OpenSSL development headers before we install John the Ripper:
Line 18: Line 20:
$ apt-get install libssl-dev
$ apt-get install libssl-dev
</pre>
</pre>
==Configure and Make John==
Now we can run configure and make:
<pre>
$ ./configure
$ make clean && make -s
</pre>
=Problem Solved=
Check out the before and after - the system john, and my john:
<pre>
$ john -wordlist:/root/codes/john/rockyou10.lst -stdout
Illegal instruction
$ ./john -wordlist:/root/codes/john/rockyou10.lst -stdout | head -n 10
Press 'q' or Ctrl-C to abort, almost any other key for status
92p 0:00:00:00 100.00% (2015-08-18 21:22) 766.6p/s junior
123456
12345
123456789
password
iloveyou
princess
1234567
12345678
abc123
nicole
</pre>
{{JohnFlag}}
[[Category:Kali]]

Latest revision as of 05:22, 19 August 2015

Problems

Started running into problems immediately, trying to dump generated passwords to stdout using John. Illegal inputs, or some baloney.

In any case, my workaround was to install a different John from the Kali 2.0 system John.

Install John

I downloaded John jumbo-1.8. There are lots of versions so make sure you get the latest jumbo.

$ unzip JohnTheRipper-jumbo-1.8.zip

Install OpenSSL Development Libs

Now install OpenSSL development headers before we install John the Ripper:

$ apt-get install libssl-dev

Configure and Make John

Now we can run configure and make:

$ ./configure
$ make clean && make -s

Problem Solved

Check out the before and after - the system john, and my john:

$ john -wordlist:/root/codes/john/rockyou10.lst -stdout
Illegal instruction

$ ./john -wordlist:/root/codes/john/rockyou10.lst -stdout | head -n 10
Press 'q' or Ctrl-C to abort, almost any other key for status
92p 0:00:00:00 100.00% (2015-08-18 21:22) 766.6p/s junior
123456
12345
123456789
password
iloveyou
princess
1234567
12345678
abc123
nicole