diff options
author | Murat D. Kadirov <banderols@gmail.com> | 2011-12-13 14:04:00 -0600 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2011-12-18 00:07:47 -0200 |
commit | f42edb8d8e942fa69429caa5e69dcd24a9b03d5b (patch) | |
tree | f17f51bb42162c8e6eebf4d5f026c4eae9819915 /system/john/README | |
parent | f009f35e8daa2b867f2f8cc429f7787bfaa39496 (diff) |
system/john: Updated for version 1.7.8.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/john/README')
-rw-r--r-- | system/john/README | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/system/john/README b/system/john/README index 40b9ad639f6a8..730f6eb0ba7df 100644 --- a/system/john/README +++ b/system/john/README @@ -3,13 +3,25 @@ weak passwords. Besides several crypt(3) password hash types most commonly found on various Unix flavors, supported out of the box are Kerberos AFS and Windows NT/2000/XP/2003 LM hashes, plus several more with contributed patches. -This script includes an option to apply Ryan Lim's patch for JTR to support -MPI. MPI allows you to use multiple processors on a system or even a cluster -of systems for cracking passwords using JTR. If you decide to apply this, you -will also need openmpi installed. JTR's author does not recommend using the -patch, so use it at your own risk - for more information, see this link: - http://www.openwall.com/lists/john-users/2005/08/24/4 -This script also contains an optional "jumbo" patch, which enables processing -of many password hash types and ciphers that are not otherwise supported. - -Note this will not build in parallel; unset MAKEFLAGS if you have problems. +This script includes an option to apply the community-enhanced "Jumbo" patch, +which integrates lots of contributed patches adding support for over 40 +additional hash and cipher types (including popular ones such as NTLM, raw MD5, +etc.), as well as some optimizations and features. Unfortunately, its overall +quality is lower than the official version's. To include the Jumbo patch, +simply pass JUMBO=1 to the build script: + JUMBO=1 sh john.SlackBuild + +This script also includes an option to merge the /usr/share/dict/words +dictionary into the standard password list, which marginally improves results +compared with the default password list. To include this, simply pass +MERGEWORDS=1 to the build script: + MERGEWORDS=1 sh john.SlackBuild + +The options can be used in combination as well: + JUMBO=1 MERGEWORDS=1 sh john.SlackBuild + +For more information, consult the documentation installed in: + /usr/doc/john-1.7.8 +and, of course, the John the Ripper homepage: + http://www.openwall.com/john + |