1
0

Makefile 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #
  2. # Copyright (C) 2009-2015 OpenWrt.org
  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:=thc-ipv6
  9. PKG_VERSION:=2.7
  10. PKG_RELEASE:=1
  11. PKG_LICENSE:=GPL-3.0
  12. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  13. PKG_SOURCE_URL:=http://freeworld.thc.org/releases/
  14. PKG_HASH:=440a3ae98b57100c397ec4f8634468dbbb0c3b48788c6b74af2a597a90544a96
  15. PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
  16. include $(INCLUDE_DIR)/package.mk
  17. THC_APPLETS := \
  18. address6 alive6 covert_send6 covert_send6d denial6 detect-new-ip6 \
  19. detect_sniffer6 dnsdict6 dnsrevenum6 dos-new-ip6 \
  20. dump_router6 exploit6 fake_advertise6 fake_dhcps6 fake_dns6d \
  21. fake_dnsupdate6 fake_mipv6 fake_mld26 fake_mld6 fake_mldrouter6 \
  22. fake_router26 fake_router6 fake_solicitate6 flood_advertise6 \
  23. flood_dhcpc6 flood_mld26 flood_mld6 flood_mldrouter6 flood_router26 \
  24. flood_router6 flood_solicitate6 fragmentation6 fuzz_ip6 fuzz_dhcpc6 \
  25. fuzz_dhcps6 implementation6 implementation6d inverse_lookup6 \
  26. kill_router6 ndpexhaust6 node_query6 parasite6 passive_discovery6 \
  27. randicmp6 redir6 rsmurf6 sendpees6 sendpeesmp6 smurf6 thcping6 \
  28. toobig6 trace6
  29. THC_DEPENDS_dnsdict6 := +libpthread
  30. THC_DEPENDS_thcping6 := +librt
  31. define BuildTool
  32. define Package/thc-ipv6-$(subst _,-,$(1))
  33. TITLE:=THC-IPv6 $(1) utility
  34. SECTION:=net
  35. CATEGORY:=Network
  36. DEPENDS:=+libpcap $(THC_DEPENDS_$(1))
  37. URL:=http://freeworld.thc.org/
  38. SUBMENU:=THC-IPv6 attack and analyzing toolkit
  39. endef
  40. define Package/thc-ipv6-$(subst _,-,$(1))/description
  41. This package contains the $(1) utility of the THC-IPv6 toolkit.
  42. endef
  43. define Package/thc-ipv6-$(subst _,-,$(1))/install
  44. $(INSTALL_DIR) $$(1)/usr/sbin
  45. $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(1) $$(1)/usr/sbin/$(1)
  46. endef
  47. $$(eval $$(call BuildPackage,thc-ipv6-$(subst _,-,$(1))))
  48. endef
  49. $(foreach a,$(THC_APPLETS),$(eval $(call BuildTool,$(a))))