From 15ac0c4a8460d8fa60e3f5e587f17a25bbd60213 Mon Sep 17 00:00:00 2001 From: Etienne Champetier Date: Tue, 30 Jul 2019 23:09:11 -0700 Subject: [PATCH] phantap: add new package PhanTap or Phantom tap is a small set of scripts that allow you to setup a network tap that automatically impersonnate a victim device, allowing you to access internet using the IP & MAC of the victim Signed-off-by: Etienne Champetier --- net/phantap/Makefile | 86 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 net/phantap/Makefile diff --git a/net/phantap/Makefile b/net/phantap/Makefile new file mode 100644 index 0000000000..9e4bf5446e --- /dev/null +++ b/net/phantap/Makefile @@ -0,0 +1,86 @@ +# Copyright (C) 2019 Diana Dragusin +# Copyright (C) 2019 Etienne Champetier +# +# This is free software, licensed under the GNU General Public License v3. +# See for more information. + +include $(TOPDIR)/rules.mk + +PKG_NAME:=phantap +PKG_RELEASE:=1 + +PKG_SOURCE_PROTO:=git +PKG_SOURCE_URL:=https://github.com/nccgroup/phantap +PKG_SOURCE_DATE:=2019.07.30 +PKG_SOURCE_VERSION:=dccee924f005213c8b1c84e05900ed0bbfac5736 +PKG_MIRROR_HASH:=456adfcc0147f3b47d2fad26938e2896096919f053f871c1319218e7d37c6d27 + +PKG_MAINTAINER:=Diana Dragusin , \ + Etienne Champetier +PKG_LICENSE:=GPL-3.0-only + +include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/cmake.mk + +CMAKE_SOURCE_SUBDIR:=src + +define Package/phantap/Default + SECTION:=net + CATEGORY:=Network + URL:=https://github.com/nccgroup/phantap +endef + +define Package/phantap + $(call Package/phantap/Default) + TITLE:=PhanTap + PKGARCH:=all + DEPENDS:=+ebtables +tcpdump +ip-full +kmod-br-netfilter +kmod-ebtables-ipv4 +endef + +define Package/phantap/conffiles +/etc/config/phantap +endef + +define Package/phantap/description + PhanTap or Phantom tap is a small set of scripts that allow you to setup a network tap + that automatically impersonate a victim device, allowing you to access internet using + the IP & MAC of the victim. To speak to machines in the same L2, see PhanTap learn +endef + +define Package/phantap-learn + $(call Package/phantap/Default) + TITLE:=PhanTap-learn + DEPENDS:=+libpcap +ip-full +endef + +define Package/phantap-learn/description + PhanTap learn listens to multicast / broadcast / arp traffic to fill the arp table + and add routes to the discovered IPs. +endef + +define Package/phantap/install + $(INSTALL_DIR) $(1)/etc/config + $(INSTALL_DATA) $(PKG_BUILD_DIR)/files/etc/config/phantap $(1)/etc/config/ + $(INSTALL_DIR) $(1)/etc/hotplug.d/iface + $(INSTALL_DATA) $(PKG_BUILD_DIR)/files/etc/hotplug.d/iface/00-phantap $(1)/etc/hotplug.d/iface/ + $(INSTALL_DIR) $(1)/etc/hotplug.d/net + $(INSTALL_DATA) $(PKG_BUILD_DIR)/files/etc/hotplug.d/net/00-phantap $(1)/etc/hotplug.d/net/ + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/etc/init.d/phantap $(1)/etc/init.d/ + $(INSTALL_DIR) $(1)/etc/sysctl.d + $(INSTALL_DATA) $(PKG_BUILD_DIR)/files/etc/sysctl.d/12-phantap.conf $(1)/etc/sysctl.d/ + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/usr/bin/phantap $(1)/usr/bin/ +endef + +define Package/phantap-learn/install + $(INSTALL_DIR) $(1)/etc/hotplug.d/iface + $(INSTALL_DATA) $(PKG_BUILD_DIR)/files/etc/hotplug.d/iface/00-phantap-learn $(1)/etc/hotplug.d/iface/ + $(INSTALL_DIR) $(1)/etc/init.d + $(INSTALL_BIN) $(PKG_BUILD_DIR)/files/etc/init.d/phantap-learn $(1)/etc/init.d/ + $(INSTALL_DIR) $(1)/usr/sbin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/phantap-learn $(1)/usr/sbin/ +endef + +$(eval $(call BuildPackage,phantap)) +$(eval $(call BuildPackage,phantap-learn)) -- 2.30.2