2006-03-30 15:38:41 +02:00
|
|
|
# $NetBSD: Makefile,v 1.14 2006/03/30 13:38:41 salo Exp $
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
#
|
|
|
|
|
2006-03-30 15:38:41 +02:00
|
|
|
DISTNAME= john-1.7.0.2
|
Updated security/john to 1.7.0.1
The following changes have been made between John 1.7 and 1.7.0.1:
* Minor bug and portability fixes.
* Better handling of certain uncommon scenarios and improper uses of John.
* Bonus: "Keyboard" cracker included in the default john.conf (john.ini)
that will try sequences of adjacent keys on a keyboard as passwords.
The following major changes have been made since John 1.6:
* Bitslice DES code for x86 with MMX: more than twice faster than older
non-bitslice MMX code.
* Bitsliced the LM hash code as well: now several times faster.
* Significant improvements to the generic bitslice DES code: +20% on RISC.
* PowerPC G4+ AltiVec support (Mac OS X and Linux): effective 128-bitness
for bitslice DES, resulting in huge speedups.
* First attempt at generic vectorization support for bitslice DES.
* Two MD5 hashes at a time for extra ILP on RISC: up to +80% on Alpha EV5+.
* Generic Blowfish x86 assembly code in addition to the original Pentium
version: +15% on the Pentium Pro family (up to and including Pentium III),
+20% on AMD K6 (Pentium 4 and newer AMD CPUs are more happy running the
original Pentium code for Blowfish).
* Verbose logging of events to the global or a session-specific log file.
* Better idle priority emulation with POSIX.1b (POSIX.4) scheduling calls.
* System-wide installation support for *BSD ports and Linux distributions.
* AIX, DU/Tru64 C2, HP-UX tcb files support in unshadow.
* New make targets for Linux/x86-64, Linux/PowerPC, FreeBSD/Alpha,
OpenBSD/x86-64, OpenBSD/Alpha, OpenBSD/SPARC, OpenBSD/SPARC64,
OpenBSD/PowerPC, OpenBSD/PA-RISC, OpenBSD/VAX, NetBSD/VAX, Solaris/SPARC64,
Mac OS X (PowerPC and x86), SCO, BeOS.
* Bug and portability fixes, and new bugs.
* Bonus: "Strip" cracker included in the default john.conf (john.ini).
2006-03-14 11:17:25 +01:00
|
|
|
#PKGREVISION= 1
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
CATEGORIES= security textproc
|
2006-03-30 15:38:41 +02:00
|
|
|
MASTER_SITES= http://www.openwall.com/john/f/
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
|
|
|
|
MAINTAINER= DawS@irc.pl
|
|
|
|
HOMEPAGE= http://www.openwall.com/john/
|
|
|
|
COMMENT= Unix Password Cracker
|
|
|
|
|
2005-09-28 22:52:18 +02:00
|
|
|
NO_CONFIGURE= yes
|
2005-11-03 21:41:43 +01:00
|
|
|
BUILD_DIRS= src
|
2004-06-26 21:17:33 +02:00
|
|
|
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
|
|
|
|
.if ${OPSYS} == "SunOS" && ${MACHINE_ARCH} == "sparc"
|
|
|
|
. if !empty(CC_VERSION:MSun)
|
|
|
|
. if defined(SPARC_TARGET_ARCH) && ${SPARC_TARGET_ARCH} == "sparcv9"
|
2004-12-03 16:14:50 +01:00
|
|
|
BUILD_TARGET= solaris-sparc-v9-cc
|
2004-06-26 21:17:33 +02:00
|
|
|
. else
|
2004-12-03 16:14:50 +01:00
|
|
|
BUILD_TARGET= solaris-sparc-v8-cc
|
2004-06-26 21:17:33 +02:00
|
|
|
. endif
|
|
|
|
. else
|
2004-12-03 16:14:50 +01:00
|
|
|
BUILD_TARGET= solaris-sparc-gcc
|
2004-06-26 21:17:33 +02:00
|
|
|
. endif
|
|
|
|
.elif ${OPSYS} == "SunOS" && ${MACHINE_ARCH} == "i386"
|
2004-12-03 16:14:50 +01:00
|
|
|
BUILD_TARGET= solaris-x86-any
|
2004-06-26 21:17:33 +02:00
|
|
|
.else
|
2004-12-03 16:14:50 +01:00
|
|
|
BUILD_TARGET= generic
|
2004-06-26 21:17:33 +02:00
|
|
|
.endif
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
|
2005-06-17 05:50:19 +02:00
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
|
Updated security/john to 1.7.0.1
The following changes have been made between John 1.7 and 1.7.0.1:
* Minor bug and portability fixes.
* Better handling of certain uncommon scenarios and improper uses of John.
* Bonus: "Keyboard" cracker included in the default john.conf (john.ini)
that will try sequences of adjacent keys on a keyboard as passwords.
The following major changes have been made since John 1.6:
* Bitslice DES code for x86 with MMX: more than twice faster than older
non-bitslice MMX code.
* Bitsliced the LM hash code as well: now several times faster.
* Significant improvements to the generic bitslice DES code: +20% on RISC.
* PowerPC G4+ AltiVec support (Mac OS X and Linux): effective 128-bitness
for bitslice DES, resulting in huge speedups.
* First attempt at generic vectorization support for bitslice DES.
* Two MD5 hashes at a time for extra ILP on RISC: up to +80% on Alpha EV5+.
* Generic Blowfish x86 assembly code in addition to the original Pentium
version: +15% on the Pentium Pro family (up to and including Pentium III),
+20% on AMD K6 (Pentium 4 and newer AMD CPUs are more happy running the
original Pentium code for Blowfish).
* Verbose logging of events to the global or a session-specific log file.
* Better idle priority emulation with POSIX.1b (POSIX.4) scheduling calls.
* System-wide installation support for *BSD ports and Linux distributions.
* AIX, DU/Tru64 C2, HP-UX tcb files support in unshadow.
* New make targets for Linux/x86-64, Linux/PowerPC, FreeBSD/Alpha,
OpenBSD/x86-64, OpenBSD/Alpha, OpenBSD/SPARC, OpenBSD/SPARC64,
OpenBSD/PowerPC, OpenBSD/PA-RISC, OpenBSD/VAX, NetBSD/VAX, Solaris/SPARC64,
Mac OS X (PowerPC and x86), SCO, BeOS.
* Bug and portability fixes, and new bugs.
* Bonus: "Strip" cracker included in the default john.conf (john.ini).
2006-03-14 11:17:25 +01:00
|
|
|
SUBST_CLASSES+= john
|
|
|
|
SUBST_STAGE.john= pre-build
|
|
|
|
SUBST_FILES.john= src/params.h
|
|
|
|
SUBST_SED.john= -e "s+@PREFIX@+${PREFIX}+g"
|
|
|
|
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
do-install:
|
Updated security/john to 1.7.0.1
The following changes have been made between John 1.7 and 1.7.0.1:
* Minor bug and portability fixes.
* Better handling of certain uncommon scenarios and improper uses of John.
* Bonus: "Keyboard" cracker included in the default john.conf (john.ini)
that will try sequences of adjacent keys on a keyboard as passwords.
The following major changes have been made since John 1.6:
* Bitslice DES code for x86 with MMX: more than twice faster than older
non-bitslice MMX code.
* Bitsliced the LM hash code as well: now several times faster.
* Significant improvements to the generic bitslice DES code: +20% on RISC.
* PowerPC G4+ AltiVec support (Mac OS X and Linux): effective 128-bitness
for bitslice DES, resulting in huge speedups.
* First attempt at generic vectorization support for bitslice DES.
* Two MD5 hashes at a time for extra ILP on RISC: up to +80% on Alpha EV5+.
* Generic Blowfish x86 assembly code in addition to the original Pentium
version: +15% on the Pentium Pro family (up to and including Pentium III),
+20% on AMD K6 (Pentium 4 and newer AMD CPUs are more happy running the
original Pentium code for Blowfish).
* Verbose logging of events to the global or a session-specific log file.
* Better idle priority emulation with POSIX.1b (POSIX.4) scheduling calls.
* System-wide installation support for *BSD ports and Linux distributions.
* AIX, DU/Tru64 C2, HP-UX tcb files support in unshadow.
* New make targets for Linux/x86-64, Linux/PowerPC, FreeBSD/Alpha,
OpenBSD/x86-64, OpenBSD/Alpha, OpenBSD/SPARC, OpenBSD/SPARC64,
OpenBSD/PowerPC, OpenBSD/PA-RISC, OpenBSD/VAX, NetBSD/VAX, Solaris/SPARC64,
Mac OS X (PowerPC and x86), SCO, BeOS.
* Bug and portability fixes, and new bugs.
* Bonus: "Strip" cracker included in the default john.conf (john.ini).
2006-03-14 11:17:25 +01:00
|
|
|
# programs and scripts
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC:Q}/run/john ${PREFIX:Q}/bin
|
|
|
|
${INSTALL_SCRIPT} ${WRKSRC:Q}/run/mailer ${PREFIX:Q}/bin
|
|
|
|
|
|
|
|
# data directory
|
|
|
|
${INSTALL_DATA_DIR} ${PREFIX:Q}/share/john
|
|
|
|
|
|
|
|
# configuration file
|
|
|
|
${INSTALL_DATA} ${WRKSRC:Q}/run/john.conf ${PREFIX:Q}/share/john
|
|
|
|
|
|
|
|
# symbolic links
|
|
|
|
.for i in unafs unique unshadow
|
|
|
|
${LN} -sf ${PREFIX:Q}/bin/john ${PREFIX:Q}/bin/${i:Q}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
# data files
|
|
|
|
.for i in all.chr alnum.chr alpha.chr digits.chr lanman.chr password.lst
|
|
|
|
${INSTALL_DATA} ${WRKSRC:Q}/run/${i:Q} ${PREFIX:Q}/share/john
|
|
|
|
.endfor
|
Added john-1.6: Unix Password Cracker
John the Ripper is a password cracker, currently available for UNIX, DOS,
WinNT/Win95. Its primary purpose is to detect weak UNIX passwords. It has
been tested with Linux x86/Alpha/SPARC, FreeBSD x86, OpenBSD x86, Solaris
2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and IRIX.
The DOS and Win32 ports are done with DJGPP and Cygnus Developer's Kit,
respectively.
Package contributed by dawszy@e-lubin.com in private mail.
2001-03-26 14:40:45 +02:00
|
|
|
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|