Skip to content

Commit 488a697

Browse files
committed
Added wifite2
1 parent 67d7f47 commit 488a697

6 files changed

Lines changed: 57 additions & 0 deletions

File tree

Config.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ source "$BR2_EXTERNAL_BLACKHAT_PATH/package/bjorn/Config.in"
77
source "$BR2_EXTERNAL_BLACKHAT_PATH/package/python-pandas/Config.in"
88
source "$BR2_EXTERNAL_BLACKHAT_PATH/package/python-getmac/Config.in"
99
source "$BR2_EXTERNAL_BLACKHAT_PATH/package/python-rich/Config.in"
10+
source "$BR2_EXTERNAL_BLACKHAT_PATH/package/python-wifite2/Config.in"
11+
source "$BR2_EXTERNAL_BLACKHAT_PATH/package/python-version/Config.in"

configs/flipper_blackhat_a33_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,3 +233,4 @@ BR2_PACKAGE_PYTHON_ROUTERSPLOIT=y
233233
BR2_PACKAGE_PYTHON_NMAP=y
234234
BR2_PACKAGE_PYTHON_PYWIFI=y
235235
BR2_PACKAGE_BJORN=y
236+
BR2_PACKAGE_PYTHON_WIFITE2=y

package/python-version/Config.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
config BR2_PACKAGE_PYTHON_VERSION
2+
bool "python-version"
3+
help
4+
This package provides a basic python version checking utility.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
################################################################################
2+
#
3+
# python‑version
4+
#
5+
################################################################################
6+
7+
8+
PYTHON_VERSION_VERSION = 5232eea250ab72cc5cb72b0b75efb35d2192b906
9+
10+
PYTHON_VERSION_SITE = https://gitlab.com/halfak/python_version
11+
PYTHON_VERSION_SITE_METHOD = git
12+
PYTHON_VERSION_LICENSE = BSD-3-Clause
13+
PYTHON_VERSION_LICENSE_FILES = LICENSE
14+
15+
PYTHON_VERSION_SETUP_TYPE = pep517
16+
17+
$(eval $(python-package))

package/python-wifite2/Config.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
config BR2_PACKAGE_PYTHON_WIFITE2
2+
bool "python-wifite2"
3+
help
4+
Python script for auditing wireless networks.
5+
6+
select BR2_PACKAGE_PYTHON_CHARDET
7+
select BR2_PACKAGE_PYTHON_REQUESTS
8+
select BR2_PACKAGE_PYTHON_RICH
9+
select BR2_PACKAGE_PYTHON_SCAPY
10+
select BR2_PACKAGE_PYTHON_VERSION
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
################################################################################
2+
#
3+
# python‑wifite2
4+
#
5+
################################################################################
6+
7+
PYTHON_WIFITE2_VERSION = e09fbea887cf4db4b15c8dd5b980c15d176a5c79
8+
9+
PYTHON_WIFITE2_SITE = https://github.com/kimocoder/wifite2
10+
PYTHON_WIFITE2_SITE_METHOD = git
11+
PYTHON_WIFITE2_LICENSE = BSD-3-Clause
12+
PYTHON_WIFITE2_LICENSE_FILES = LICENSE
13+
14+
PYTHON_WIFITE2_SETUP_TYPE = pep517
15+
16+
PYTHON_WIFITE2_DEPENDENCIES = \
17+
python-chardet \
18+
python-requests \
19+
python-rich \
20+
python-scapy \
21+
python-version
22+
23+
$(eval $(python-package))

0 commit comments

Comments
 (0)