2019-07-01 17:40:34 +00:00
|
|
|
#
|
2019-07-02 13:23:31 +00:00
|
|
|
# Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
|
2019-07-01 17:40:34 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=hcxtools
|
2020-02-02 12:56:30 +00:00
|
|
|
PKG_VERSION:=5.3.0
|
2019-07-01 17:40:34 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
2019-07-02 13:23:31 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxtools/tar.gz/$(PKG_VERSION)?
|
2020-02-02 12:56:30 +00:00
|
|
|
PKG_HASH:=bc3465eb3b97c4db849af41ae3fa7c812d4683eb9e493f090ac82e922ba8a36d
|
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/hcxtools
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEPENDS:=+libpthread +libpcap +zlib +libcurl +libopenssl
|
2019-07-02 13:23:31 +00:00
|
|
|
TITLE:=hcxtools
|
|
|
|
URL:=https://github.com/ZerBea/hcxtools
|
2019-07-23 13:35:03 +00:00
|
|
|
SUBMENU:=Wireless
|
2019-07-01 17:40:34 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/hcxtools/description
|
|
|
|
Set of tools convert packets from captures (h = hash, c = capture, convert and calculate candidates, x = different hashtypes)
|
|
|
|
for the use with latest hashcat or John the Ripper.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/ \
|
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
|
|
CFLAGS="$(TARGET_CFLAGS)"
|
|
|
|
endef
|
|
|
|
|
2020-02-02 12:56:30 +00:00
|
|
|
define Package/hcxtools-custom/install
|
|
|
|
$(INSTALL_DIR) $(1)/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpcapngtool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashtool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpsktool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxwltool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/whoismac $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpmkidtool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcx2john $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpcaptool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashcattool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxmactool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxessidtool $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhc2hcx $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanwkp2hcx $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcxinfo $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcx2ssid $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanhcxcat $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanpmk2hcx $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlanjohn2hcx $(1)/sbin/
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancow2hcxpmk $(1)/sbin/
|
2019-07-01 17:40:34 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,hcxtools))
|