2019-07-01 17:40:34 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hcxdumptool
|
2021-04-12 04:24:18 +00:00
|
|
|
PKG_VERSION:=6.1.6
|
|
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
2019-07-01 17:40:34 +00:00
|
|
|
|
2019-07-02 13:23:31 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxdumptool/tar.gz/$(PKG_VERSION)?
|
2021-04-12 04:24:18 +00:00
|
|
|
PKG_HASH:=e3212bd808e228c28ecfeeb4a9709480aa178b2e8b15c0a7d96733b648f8da85
|
2019-07-01 17:40:34 +00:00
|
|
|
|
2019-07-02 13:23:31 +00:00
|
|
|
PKG_MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
|
|
|
|
PKG_LICENSE:=MIT
|
2019-07-03 06:02:21 +00:00
|
|
|
PKG_LICENSE_FILES:=license.txt
|
2019-07-01 17:40:34 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/hcxdumptool
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
2020-02-02 12:56:30 +00:00
|
|
|
DEPENDS:=+libpcap +libopenssl
|
2019-07-01 17:40:34 +00:00
|
|
|
TITLE:=hcxdumptool
|
2019-07-02 13:23:31 +00:00
|
|
|
URL:=https://github.com/ZerBea/hcxdumptool
|
2019-07-23 13:35:03 +00:00
|
|
|
SUBMENU:=Wireless
|
2019-07-01 17:40:34 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hcxdumptool/description
|
|
|
|
Small tool to capture packets from wlan devices. After capturing, upload
|
|
|
|
the "uncleaned" cap here (https://wpa-sec.stanev.org/?submit)
|
|
|
|
to see if your ap or the client is vulnerable by using common wordlists.
|
|
|
|
Convert the cap to hccapx and/or to WPA-PMKID-PBKDF2 hashline (16800) with hcxpcaptool (hcxtools)
|
|
|
|
and check if wlan-key or plainmasterkey was transmitted unencrypted.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/ \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hcxdumptool/install
|
2019-08-26 18:52:50 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxdumptool $(1)/usr/sbin/
|
2019-07-01 17:40:34 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hcxdumptool))
|