Merge branch '3.0' into 3.1
This commit is contained in:
commit
6b274cf5e1
55
john/.footprint
Normal file
55
john/.footprint
Normal file
@ -0,0 +1,55 @@
|
||||
drwxr-xr-x root/root usr/
|
||||
drwxr-xr-x root/root usr/bin/
|
||||
-rwxr-xr-x root/root usr/bin/john
|
||||
drwxr-xr-x root/root usr/lib/
|
||||
drwxr-xr-x root/root usr/lib/john/
|
||||
-rwxr-xr-x root/root usr/lib/john/all.chr
|
||||
-rwxr-xr-x root/root usr/lib/john/alnum.chr
|
||||
-rwxr-xr-x root/root usr/lib/john/alpha.chr
|
||||
-rwxr-xr-x root/root usr/lib/john/benchmark-unify
|
||||
-rwxr-xr-x root/root usr/lib/john/calc_stat
|
||||
-rwxr-xr-x root/root usr/lib/john/cracf2john.py
|
||||
-rwxr-xr-x root/root usr/lib/john/dictionary.rfc2865
|
||||
-rwxr-xr-x root/root usr/lib/john/digits.chr
|
||||
-rwxr-xr-x root/root usr/lib/john/dumb16.conf
|
||||
-rwxr-xr-x root/root usr/lib/john/dumb32.conf
|
||||
-rwxr-xr-x root/root usr/lib/john/dynamic.conf
|
||||
-rwxr-xr-x root/root usr/lib/john/genincstats.rb
|
||||
-rwxr-xr-x root/root usr/lib/john/genmkvpwd
|
||||
-rwxr-xr-x root/root usr/lib/john/hccap2john
|
||||
-rwxr-xr-x root/root usr/lib/john/john
|
||||
-rwxr-xr-x root/root usr/lib/john/john.bash_completion
|
||||
-rwxr-xr-x root/root usr/lib/john/john.conf
|
||||
-rwxr-xr-x root/root usr/lib/john/john.local.conf (EMPTY)
|
||||
-rwxr-xr-x root/root usr/lib/john/keepass2john
|
||||
-rwxr-xr-x root/root usr/lib/john/keychain2john
|
||||
-rwxr-xr-x root/root usr/lib/john/lanman.chr
|
||||
-rwxr-xr-x root/root usr/lib/john/ldif2john.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/lion2john-alt.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/lion2john.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/mailer
|
||||
-rwxr-xr-x root/root usr/lib/john/mkvcalcproba
|
||||
-rwxr-xr-x root/root usr/lib/john/netntlm.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/netscreen.py
|
||||
-rwxr-xr-x root/root usr/lib/john/odf2john.py
|
||||
-rwxr-xr-x root/root usr/lib/john/pass_gen.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/password.lst
|
||||
-rwxr-xr-x root/root usr/lib/john/pdf2john
|
||||
-rwxr-xr-x root/root usr/lib/john/pwsafe2john
|
||||
-rwxr-xr-x root/root usr/lib/john/racf2john
|
||||
-rwxr-xr-x root/root usr/lib/john/radius2john.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/rar2john
|
||||
-rwxr-xr-x root/root usr/lib/john/raw2dyna
|
||||
-rwxr-xr-x root/root usr/lib/john/relbench
|
||||
-rwxr-xr-x root/root usr/lib/john/sap2john.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/sha-dump.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/sha-test.pl
|
||||
-rwxr-xr-x root/root usr/lib/john/sipdump2john.py
|
||||
-rwxr-xr-x root/root usr/lib/john/ssh2john
|
||||
-rwxr-xr-x root/root usr/lib/john/stats
|
||||
-rwxr-xr-x root/root usr/lib/john/tgtsnarf
|
||||
-rwxr-xr-x root/root usr/lib/john/unafs
|
||||
-rwxr-xr-x root/root usr/lib/john/undrop
|
||||
-rwxr-xr-x root/root usr/lib/john/unique
|
||||
-rwxr-xr-x root/root usr/lib/john/unshadow
|
||||
-rwxr-xr-x root/root usr/lib/john/zip2john
|
1
john/.md5sum
Normal file
1
john/.md5sum
Normal file
@ -0,0 +1 @@
|
||||
e49b2072d20a8254164c9112f6b3751b john-1.7.9-jumbo-7.tar.bz2
|
25
john/Pkgfile
Normal file
25
john/Pkgfile
Normal file
@ -0,0 +1,25 @@
|
||||
# Description: John the Ripper is a fast password cracker
|
||||
# URL: http://www.openwall.com/john/
|
||||
# Maintainer: Thomas Penteker, tek at serverop dot de
|
||||
# Packager: Jose V Beneyto, sepen at crux dot nu
|
||||
|
||||
name=john
|
||||
version=1.7.9-jumbo-7
|
||||
release=1
|
||||
source=(http://www.openwall.com/$name/g/$name-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
|
||||
echo 'linux-x86-sse2 Linux, x86 with SSE2 (best)' > $SRC/systypes
|
||||
sed -i 's|/usr/libexec|/usr/lib|g' $name-$version/src/params.h
|
||||
|
||||
cd $name-$version/src
|
||||
|
||||
make linux-x86-64
|
||||
|
||||
install -d $PKG/usr/bin
|
||||
install -d $PKG/usr/lib/$name
|
||||
install -m 755 ../run/* $PKG/usr/lib/$name
|
||||
echo -e '#!/bin/sh\n/usr/lib/john/john "$@"\n' > $PKG/usr/bin/john
|
||||
chmod 755 $PKG/usr/bin/john
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user