From 11550c66c0002a86d8c899812989325f191ef797 Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sun, 3 Aug 2025 23:39:50 -0500 Subject: Add support for sending ARP REPLY packets Input includes the MAC Address and the spoofed IP address. For any broadcast REQUEST packet, the target protocol address (ipv4) is checked against the spoofed address, and if they are equal, an appropriate ARP REPLY is sent --- src/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'src/CMakeLists.txt') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 48a00de..5718117 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,2 +1,3 @@ add_executable(arpee arpee.h arpee.c) target_link_libraries(arpee PRIVATE junk) +install(CODE "execute_process(COMMAND sudo setcap 'CAP_NET_RAW+eip' ./build/src/arpee)") -- cgit