You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.9 KiB

  1. #
  2. # Copyright (C) 2019 Andreas Nilsen <adde88@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=hcxtools
  9. PKG_VERSION:=6.2.4
  10. PKG_RELEASE:=$(AUTORELEASE)
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://codeload.github.com/zerbea/hcxtools/tar.gz/$(PKG_VERSION)?
  13. PKG_HASH:=74299313dd15ed38f07b42201903ab85ebbc3ad220a01fff1bd5c967cfea817d
  14. PKG_MAINTAINER:=Andreas Nilsen <adde88@gmail.com>
  15. PKG_LICENSE:=MIT
  16. PKG_LICENSE_FILES:=license.txt
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/hcxtools
  19. SECTION:=net
  20. CATEGORY:=Network
  21. DEPENDS:=+libpthread +libpcap +zlib +libcurl +libopenssl
  22. TITLE:=hcxtools
  23. URL:=https://github.com/ZerBea/hcxtools
  24. SUBMENU:=Wireless
  25. endef
  26. define Package/hcxtools/description
  27. Set of tools convert packets from captures (h = hash, c = capture, convert and calculate candidates, x = different hashtypes)
  28. for the use with latest hashcat or John the Ripper.
  29. endef
  30. define Build/Compile
  31. $(MAKE) -C $(PKG_BUILD_DIR)/ \
  32. $(TARGET_CONFIGURE_OPTS) \
  33. CFLAGS="$(TARGET_CFLAGS)"
  34. endef
  35. define Package/hcxtools/install
  36. $(INSTALL_DIR) $(1)/sbin
  37. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxeiutool $(1)/sbin/
  38. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxessidtool $(1)/sbin/
  39. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhash2cap $(1)/sbin/
  40. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashcattool $(1)/sbin/
  41. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxhashtool $(1)/sbin/
  42. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxmactool $(1)/sbin/
  43. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpcapngtool $(1)/sbin/
  44. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpmkidtool $(1)/sbin/
  45. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpmktool $(1)/sbin/
  46. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxpsktool $(1)/sbin/
  47. $(INSTALL_BIN) $(PKG_BUILD_DIR)/hcxwltool $(1)/sbin/
  48. $(INSTALL_BIN) $(PKG_BUILD_DIR)/whoismac $(1)/sbin/
  49. $(INSTALL_BIN) $(PKG_BUILD_DIR)/wlancap2wpasec $(1)/sbin/
  50. endef
  51. $(eval $(call BuildPackage,hcxtools))