blob: 263b178f48ce8dd7d48544419e64055d24b6f07a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#
# 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:=hcxtools
PKG_VERSION:=7.1.2
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxtools/tar.gz/$(PKG_VERSION)?
PKG_HASH:=c726b93df32efd3298874b324f820d93cb08a4dae03d9144b0d5062c003fd77f
PKG_MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=license.txt
include $(INCLUDE_DIR)/package.mk
define Package/hcxtools
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread +zlib +libcurl +libopenssl
TITLE:=hcxtools
URL:=https://github.com/ZerBea/hcxtools
SUBMENU:=Wireless
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) -std=gnu99" \
LDFLAGS="$(TARGET_LDFLAGS)"
endef
define Package/hcxtools/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxeiutool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashtool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpcapngtool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpmktool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpottool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpsktool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxwltool $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/whoismac $(1)/usr/bin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/usr/bin/
endef
$(eval $(call BuildPackage,hcxtools))
|