hcxdumptools: 6.0.6 bump

This commit is contained in:
blshkv 2020-05-26 10:37:20 +08:00
parent 34035b6595
commit de5445720d
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
6 changed files with 84 additions and 0 deletions

View file

@ -1 +1,2 @@
DIST hcxdumptool-6.0.0.tar.gz 75010 BLAKE2B 05c666df3bd3e20873a0d3322619056cabaa3b61ba6e295c457fd21198c29be0868f2577ce9e71d753ac6be74378256569b770e3594b916efa6b4ab4d0e8ccf8 SHA512 cda80fc41c0f413130ac753358774fcd8d2278a832ebd92b3cefb962c4acd055cc15cfe7fe0f88f33e43db10e83ce1b2d4c968660706acf28031a079cccbe9a0
DIST hcxdumptool-6.0.6.tar.gz 86307 BLAKE2B 4e82f117a973416afef1e6a6a0dafa72c7012517dfc1265428404258a46de5c699e27b7e407ca98088bb212b4e39f822e4350f3ef18f51780895131c66e55d96 SHA512 16a52e3cc778839b8dd2418fbeae2a269907260cf1286baafe146a2de99fae1c7d9ab3e9d8a10bd8b7f8bb2bef69c857c0c71ab20e5b757477fc00d5d12d9ddb

View file

@ -0,0 +1,33 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Small tool to capture packets from wlan devices"
HOMEPAGE="https://github.com/ZerBea/hcxdumptool"
SRC_URI="https://github.com/ZerBea/hcxdumptool/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="gpio"
DEPEND="dev-libs/openssl:="
RDEPEND="${DEPEND}"
src_prepare() {
sed -e "s/^install: build/install:/" \
-i Makefile || die
default
}
src_compile() {
emake $(usex gpio \
"GPIOSUPPORT=on" \
"GPIOSUPPORT=off")
}
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}

View file

@ -1 +1,2 @@
DIST hcxkeys-4.0.1_p20190712.tar.gz 15624 BLAKE2B 73162c283d0ea50bdedef131bb98ea7e2b2099c04b7eadcbda22e5ebc9f1006bc5dfd2a582b331cb9ca7b4a8cda041d33ff1b421422977cd3bd39ed627f55489 SHA512 68fde656f00ebb464f2bab23aabc31236f0e58055e4c445bf350faa0146c1d77d8614f7f499793c1df85422729d13ee01a46c336c81ac36a01eb7abbe91479bb
DIST hcxkeys-6.0.0.tar.gz 15756 BLAKE2B 2280da77f506133fe884c990450e237724ffa049a88c0a52b8f85cb60bb8386a89246e9ed44058293a87d824125a12da6652e827b8699411e7bfba7a9b5697ee SHA512 e3efd9ff6ea7fa7bfbb1fb4a1784938c6de96f25ce4a229be500960f8d9848dc9429a9274a6e13ddbc3f6085feaa85cad6598929cc66d652f7717695324defca

View file

@ -0,0 +1,23 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Small set of tools to generate plainmasterkeys (rainbowtables) and hashes for the use with latest hashcat and John the Ripper"
HOMEPAGE="https://github.com/ZerBea/hcxkeys"
SRC_URI="https://github.com/ZerBea/hcxkeys/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="dev-libs/openssl:*
virtual/opencl"
RDEPEND="${DEPEND}"
#S="${WORKDIR}/${PN}-${MY_COMMIT}"
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}

View file

@ -1 +1,2 @@
DIST hcxtools-5.3.0.tar.gz 131433 BLAKE2B cdcaa44dc6914eabc85bcaf50b76a66b77e7ae3f6d9910a4106757fb76644adb10df84159cf22fb1b5253be3e830968c87d2eb1f678c1eb1baa571fe74111a8d SHA512 2e170312847dabd1e32219ed2c4deb6c5e3a9b10f4aa792885a7db3997884aeb9534136aeaa5eddc856540faf30ec24fd06ac96c0ad20437589d7fa4858cd7d5
DIST hcxtools-6.0.2.tar.gz 177009 BLAKE2B ae9824c51924a3be8cd3ab748364c020738a096001e210e051f3bd830c09171ea9c82df75f084ee9b2114b1808396b2822fc539723231970be5e3177136ddde2 SHA512 46c501a9c2e328bda0cf10e74aa9d2cd8abff98b45c720da0658bf5234ec263bbab69a8b9768de230fb30d6bbc6d709dcdd9596f3b1e6c804e0d073dc1e3b2ff

View file

@ -0,0 +1,25 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Portable solution for capturing wlan traffic and conversion to hashcat formats"
HOMEPAGE="https://github.com/ZerBea/hcxtools"
SRC_URI="https://github.com/ZerBea/hcxtools/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
DEPEND="
dev-libs/openssl:*
sys-libs/zlib
net-misc/curl
net-libs/libpcap:="
RDEPEND="${DEPEND}"
src_install(){
emake DESTDIR="${ED}" PREFIX="${EPREFIX}/usr" install
}