blob: b6cf970bf326ef0b2364bbfb9e04e02904af1ee4 (
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
60
61
62
63
64
65
66
67
|
#
# Copyright (C) 2009-2014 OpenWrt.org
#
# 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:=5.1.6
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/ZerBea/$(PKG_NAME)/archive/
PKG_HASH:=19d2800c6f9339dd552ebc3e7195860f208a9856340b4db1aeaeb4a234557ca6
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/hcxtools
SECTION:=net
CATEGORY:=Network
DEPENDS:=+libpthread +libpcap +zlib +libcurl +libopenssl
TITLE:= hcxtools
URL:=https://github.com/ZerBea/hcxtools.git
SUBMENU:=wireless
MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
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
define Package/hcxtools/install
$(INSTALL_DIR) $(1)/sbin
$(INSTALL_DIR) $(1)/etc
$(CP) $(PKG_BUILD_DIR)/wlanwkp2hcx $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanpmk2hcx $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhcxmnc $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhcx2essid $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanjohn2hcx $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/hcxpcaptool $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhcx2john $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/hcxpsktool $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlancow2hcxpmk $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhcxinfo $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/hcxhashcattool $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhashhcx $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlanhc2hcx $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/hcxwltool $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/whoismac $(1)/sbin/
$(CP) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
# $(CP) $(PKG_BUILD_DIR)/usefulscripts/hcxgrep.py $(1)/sbin/hcxgrep
endef
$(eval $(call BuildPackage,hcxtools))
|