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.

44 lines
1.2 KiB

  1. # Copyright (C) 2017 Yousong Zhou
  2. #
  3. # This is free software, licensed under the GNU General Public License v2.
  4. # See /LICENSE for more information.
  5. #
  6. include $(TOPDIR)/rules.mk
  7. PKG_NAME:=pixiewps
  8. PKG_VERSION:=1.4.1
  9. PKG_RELEASE:=1
  10. PKG_MAINTAINER:=Yousong Zhou <yszhou4tech@gmail.com>
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=https://github.com/wiire-a/pixiewps/releases/download/v$(PKG_VERSION)
  13. PKG_HASH:=8b61b9d94e26c07ab08a01eacd200576375c08139f9d781b5fdbb587ddd33528
  14. PKG_LICENSE:=GPL-3.0
  15. PKG_LICENSE_FILES:=LICENSE.md
  16. include $(INCLUDE_DIR)/package.mk
  17. MAKE_PATH:=src
  18. define Package/pixiewps
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=wireless
  22. TITLE:=An offline WPS bruteforce utility
  23. URL:=https://github.com/wiire-a/pixiewps
  24. DEPENDS:=+libpthread
  25. endef
  26. define Package/pixiewps/description
  27. Pixiewps is a tool written in C used to bruteforce offline the WPS PIN
  28. exploiting the low or non-existing entropy of some Access Points, the so-called
  29. "pixie-dust attack" discovered by Dominique Bongard in summer 2014. It is
  30. meant for educational purposes only.
  31. endef
  32. define Package/pixiewps/install
  33. $(INSTALL_DIR) $(1)/usr/bin
  34. $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/pixiewps $(1)/usr/bin/
  35. endef
  36. $(eval $(call BuildPackage,pixiewps))