aboutsummaryrefslogtreecommitdiffstats
path: root/community/john/APKBUILD
blob: 41755072b8e651547e24b1541693f6697469fd3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=john
pkgver=1.8.0
_pkgrel=jumbo-1
pkgrel=4
pkgdesc="John the Ripper password cracker"
url="http://www.openwall.com/john"
arch="x86_64 armhf"
license="GPL2"
depends="nss"
options="!strip"
makedepends="libpcap-dev libressl-dev gmp-dev yasm-dev zlib-dev"
install=""
subpackages="$pkgname-doc				\
		$pkgname-scripts-py:py 			\
		$pkgname-scripts-perl:perl 		\
		$pkgname-scripts-ruby:ruby  	\
		$pkgname-misc 					\
		$pkgname-zsh-completion:zshcomp	\
		$pkgname-bash-completion:bashcomp"
source="$pkgname-$pkgver.tar.gz::https://github.com/magnumripper/JohnTheRipper/archive/$pkgver-$_pkgrel.tar.gz
		truecrypt_fmt_plug.patch
		params-h.patch
		gcc5-support.patch
		libressl.patch
		"
builddir="$srcdir/JohnTheRipper-$pkgver-$_pkgrel"
build() {
	cd "$builddir"/src
	sed -i -e "s/ac_default_prefix.*/ac_default_prefix=\/usr/g" configure
	export OPENSSL_LIBS="-lssl -lcrypto"
	./configure \
		--disable-openmp 
	make || return 1
}

package() {
	cd "$builddir"
	mkdir -p "$pkgdir"/usr/bin
	mkdir -p "$pkgdir"/usr/share/doc/$pkgname

	install -Dm644 run/john.conf ${pkgdir}/etc/john/john.conf
	install -Dm644 run/john.local.conf ${pkgdir}/etc/john/john.local.conf
	install -Dm644 doc/* ${pkgdir}/usr/share/doc/$pkgname
	install -Dm644 doc/LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE

	local john_bins="john calc_stat genmkvpwd mkvcalcproba \
				relbench tgtsnarf raw2dyna"
	for bin in $(echo ${john_bins}); do
    	install -Dm755 run/${bin} -t "${pkgdir}/usr/bin"
	done

	cd "${pkgdir}/usr/bin"
	local john_links="hccap2john keepass2john mozilla2john  \
					pdf2john pfx2john pwsafe2john racf2john \
					rar2john ssh2john unafs unique unsahdow \
					undrop zip2john"
	for link in $(echo ${john_links}); do
		ln -s john ${link}
	done
}

py() {
	pkgdesc="Python Scripts for John the Ripper"
	arch=noarch
	depends="python2 libxml2 libgsf"
	install_if="$pkgname=$pkgver-r$pkgrel"
	cd "$builddir" 
	local john_scripts="1password2john.py ecryptfs2john.py 		\
		kwallet2john.py openssl2john.py 7z2john.py efs2john.py  \
		lotus2john.py pcap2john.py aix2john.py encfs2john.py 	\
		mcafee_epo2john.py pdf2john.py androidfde2john.py 		\
		htdigest2john.py ml2john.py sipdump2john.py 			\
		apex2john.py ikescan2john.py mozilla2john.py 			\
		ssh2sshng.py bitcoin2john.py kdcdump2john.py 			\
		netscreen.py sshng2john.py blockchain2john.py 			\
		keychain2john.py odf2john.py strip2john.py 				\
		cracf2john.py keystore2john.py office2john.py 			\
		sxc2john.py dmg2john.py known_hosts2john.py 			\
		openbsd_softraid2john.py"

	for john_script in $(echo ${john_scripts}); do
		install -D -m755 run/${john_script} \
			"$subpkgdir"/usr/share/john
	done	
}

perl() {
	pkgdesc="Perl Scripts for John the Ripper"
	arch=noarch
	depends="perl"
	install_if="$pkgname=$pkgver-r$pkgrel"
	cd "$builddir" 
	local john_scripts="aix2john.pl ios7tojohn.pl	\
		lion2john-alt.pl pass_gen.pl sap2john.pl	\
		cisco2john.pl ldif2john.pl lion2john.pl		\
        radius2john.pl sha-dump.pl hextoraw.pl 		\
		leet.pl netntlm.pl rexgen2rules.pl 			\
		sha-test.pl benchmark-unify"
	for john_script in $(echo ${john_scripts}); do
		install -D -m755 run/${john_script} \
			"$subpkgdir"/usr/share/john
	done	
}

ruby() {
    pkgdesc="Ruby Scripts for John the Ripper"
    arch=noarch
    depends="ruby"
    install_if="$pkgname=$pkgver-r$pkgrel"
    cd "$builddir" 
    local john_scripts="genincstats.rb"
    for john_script in $(echo ${john_scripts}); do
        install -D -m755 run/${john_script} \
            "$subpkgdir"/usr/share/john
    done    
}

misc() {
    pkgdesc="Misc tools for John the Ripper: password list and charset files"
    arch=noarch
    install_if="$pkgname=$pkgver-r$pkgrel"
	cd "$builddir"
	mkdir -p ${subpkgdir}/usr/share/john/kernels/

	local john_pwdfiles="password.lst dictionary.rfc2865 stats"
	local john_conffiles="dumb16.conf dumb32.conf dynamic.conf 		\
			dynamic_flat_sse_formats.conf regex_alphabets.conf 		\
			repeats16.conf repeats32.conf"
	local john_chrfiles="lowernum.chr alnum.chr upper.chr lower.chr \
            alpha.chr ascii.chr latin1.chr lanman.chr 				\
			lowerspace.chr digits.chr lm_ascii.chr utf8.chr 		\
			uppernum.chr makechr alnumspace.chr"

    for john_pwdfiles in $(echo ${john_pwdfiles}); do
	    install -D -m644 run/${john_pwdfiles} \
    		    "$subpkgdir"/usr/share/john
    done

    for john_conffiles in $(echo ${john_conffiles}); do
	    install -D -m644 run/${john_conffiles} \
    		    "$subpkgdir"/usr/share/john
    done


    for john_chrfiles in $(echo ${john_chrfiles}); do
	    install -D -m644 run/${john_chrfiles} \
    		    "$subpkgdir"/usr/share/john
    done
}

bashcomp() {
    depends=""
    pkgdesc="Bash completions for $pkgname"
    install_if="$pkgname=$pkgver-r$pkgrel bash-completion"
    arch="noarch"
	cd "$builddir"
    install -Dm644 run/john.bash_completion \
        "$subpkgdir"/usr/share/bash-completion/completions/$pkgname || return 1
}

zshcomp() {
	depends=""
	pkgdesc="Zsh completions for $pkgname"
	install_if="$pkgname=$pkgver-r$pkgrel zsh"
	arch="noarch"
	cd "$builddir"
    install -Dm644 run/john.zsh_completion \
		"$subpkgdir"/usr/share/zsh/site-functions/$pkgname || return 1
}



md5sums="2e80ec877e78d0c6ce72febb8844e0e2  john-1.8.0.tar.gz
e6e158d946783b14e1109bd96d54bb64  truecrypt_fmt_plug.patch
d6ab104062b9ce84b172ad7ecdd08226  params-h.patch
b1f6ab678caabf4d3adb253735f46def  gcc5-support.patch
b20aa081f750286be0c9664f5853dbfc  libressl.patch"
sha256sums="95bbd3ecfbe51c6263317b3009bede98f20689a26c7aee191458ed9b26d5c9f6  john-1.8.0.tar.gz
91731241b644dc8cf64d55260801277b168dcd38c5585c10120c75393f0c35fa  truecrypt_fmt_plug.patch
2b2396bf9e344bb28fcf91088d5dc12b0c91de3da74a4241d32c44496a291851  params-h.patch
7abd8b061055f7c81de8cadc021050ac113f0f71a0bcfb83680f10d8ca6e04df  gcc5-support.patch
d02ce505b7f01f3b415aa7d42b73da289bf73277c1d1e0e4933ea266c10ae777  libressl.patch"
sha512sums="8b7fad7a6330b5ff1afc306218ba698aaa27776b566f82c2e76102d5ceb10aeafa69d71fa6fff67c81996ea2c6a04384bab4696ed192306c6d074873562e7089  john-1.8.0.tar.gz
80be6cc1b1b35c6a85392008638b2f8b6d8a518ee35f59405e2f5682e025e4b8beecf964148311e6f62d76b59153f04427024fa81aaf56ee2062ac2dbf0a9bcb  truecrypt_fmt_plug.patch
a5c22feb8bf11509c306a2f236f2bd4891fdfc3b01882f07d85015e0895d82f28df0dff78ba8d3a3862d8d95877a88a9eb8138e6c407b40881fa1455079b98fc  params-h.patch
4ebe8b41b1d0c3839348dcf5348332f9d7ce25919077fa054db64b7106150f299c6b177d117f7c18c1db672a494a6de6be8b5afe502f5ca3639602ba3aef6866  gcc5-support.patch
fb46431fe3e42e36c72361c13460e8ac626d2f146fa84c8f6e17e5407e69530a84ceb1de6bc9910c1a03a6e907fc113f7000a2cbc3936ae0860103d3e2d489b0  libressl.patch"