wifite: v2.2.1 bump

This commit is contained in:
blshkv 2018-08-21 10:17:48 +08:00
parent 8da1125fcf
commit 4946455af4
No known key found for this signature in database
GPG key ID: 273E3E90D1A6294F
4 changed files with 67 additions and 33 deletions

View file

@ -1,33 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Utilise Pixie Dust Attack to find the correct WPS PIN."
HOMEPAGE="https://github.com/t6x/reaver-wps-fork-t6x"
SRC_URI="https://github.com/t6x/reaver-wps-fork-t6x/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="!net-wireless/reaver
net-libs/libpcap
dev-db/sqlite:3"
RDEPEND="${DEPEND}"
AUTOTOOLS_IN_SOURCE_BUILD="1"
S="${WORKDIR}/${P}/src"
src_prepare() {
# fixme:
sed -i 's|@localstatedir@/lib/|@localstatedir@/|' config.mak.in
eapply_user
}
src_compile() {
cd src
emake -j1
}

View file

@ -1,3 +1,4 @@
DIST wifite-2.0.89.tar.gz 34201 BLAKE2B e81469c8eaedaa381284566ec94ede9b50ee357f6a55fdf73f0923aafeccd8b24091010efb7c3ae511c17b69683b94dbab1e3dfd2c9275b9540173e9d5387e34 SHA512 fc52fd51b16e9caeae3a71f1a3d3c5ec38f5e19193106acd0acd57a7e8808f692c143a7c4ce82792561a4400320f996ef93fe283540c9c4ead1f483cb0c5a12c
DIST wifite-2.1.6.zip 680857 BLAKE2B fb0d14e394705759eb898c8eb6cf4def5ff241dc7a9bddff6305978ab3eaa543c9e4b14fbcbce809d7fd609ae4e534ffb16345be0b71a3699fc8481f9ecfe783 SHA512 24806fafffd5534e32ac38bba4e87a5677a54efa62b85af8fb67d78bc2b77c925d9ff12d9bb14a4603b03ed9f8c3feebe1c02091048485784c4360f6e19552e3
DIST wifite-2.1.6_p20180821.zip 714774 BLAKE2B a1a1b908c0bcf9d192dc5d46882136f6440c1375096fc35662f9f6e74462775f6bd9722135cac91bb477309f45e88029d304ed1f657f3666b91f28fa200a2f21 SHA512 c92af639ed0bb4f71f358035df58e60187df252766f1ab0df88f1b82e74590f3548dd2f70df3d90e7675c9c17209ab85079764b1c2a590eb4bb4f312f84003c8
DIST wifite2-2.2.1.tar.gz 681677 BLAKE2B 06468d9aba912306dcf74a874001f36667f8b6464a62132d3eda9638925d2fabe03ff34420fd1f9aa936e0c6f67e59cba85a0a45aa1e39ff5c3c0327f4b23020 SHA512 d39907288eb12f3152c5486c73bef94bb8aad34e0d9408c706628dbc14122085c9da73afe674c0a01daf1938fbc2d85edf447dee45cb1a890ab74a8315ff9e7b

View file

@ -0,0 +1,25 @@
From 25c9fc025762c7263e3709701294d46527a26ba2 Mon Sep 17 00:00:00 2001
From: Anton Bolshakov <blshkv@users.noreply.github.com>
Date: Tue, 21 Aug 2018 09:33:05 +0800
Subject: [PATCH] Update config.py
last bit of https://github.com/derv82/wifite2/issues/102
---
wifite/config.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/wifite/config.py b/wifite/config.py
index 2edbe4e..2f87dde 100755
--- a/wifite/config.py
+++ b/wifite/config.py
@@ -85,8 +85,8 @@ def initialize(cls, load_interface=True):
cls.wordlist = None
wordlists = [
'./wordlist-top4800-probable.txt',
- '/usr/share/wordlists/wordlist-top4800-probable.txt',
- '/usr/local/share/wordlists/wordlist-top4800-probable.txt',
+ '/usr/share/dict/wordlist-top4800-probable.txt',
+ '/usr/local/share/dict/wordlist-top4800-probable.txt',
'/usr/share/wfuzz/wordlist/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt',
'/usr/share/fuzzdb/wordlists-user-passwd/passwds/phpbb.txt',
'/usr/share/wordlists/fern-wifi/common.txt'

View file

@ -0,0 +1,41 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
inherit distutils-r1
MY_P="${PN}2-${PV}"
if [[ ${PV} == "9999" ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/derv82/wifite2.git"
KEYWORDS=""
else
SRC_URI="https://github.com/derv82/wifite2/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
S="${WORKDIR}/${MY_P}"
KEYWORDS="~amd64 ~arm ~x86"
fi
DESCRIPTION="An automated wireless attack tool"
HOMEPAGE="https://github.com/derv82/wifite2"
LICENSE="GPL-2"
SLOT="2"
IUSE="dict extra"
DEPEND=""
RDEPEND="net-wireless/aircrack-ng
dev-python/pexpect
dict? ( sys-apps/cracklib-words )
extra? ( net-analyzer/wireshark
net-wireless/reaver-wps-fork-t6x
!net-wireless/reaver
net-wireless/bully
net-wireless/cowpatty
net-wireless/pyrit
net-analyzer/macchanger
)"
PATCHES=( "${FILESDIR}/pull_129.patch" )