summaryrefslogtreecommitdiff
path: root/security/arpCounterattack
diff options
context:
space:
mode:
Diffstat (limited to 'security/arpCounterattack')
-rw-r--r--security/arpCounterattack/Makefile9
-rw-r--r--security/arpCounterattack/files/patch-address.hpp4
-rw-r--r--security/arpCounterattack/files/patch-arpCounterattack.cpp13
3 files changed, 17 insertions, 9 deletions
diff --git a/security/arpCounterattack/Makefile b/security/arpCounterattack/Makefile
index 3362a0e1a039..b1bd0e3c089d 100644
--- a/security/arpCounterattack/Makefile
+++ b/security/arpCounterattack/Makefile
@@ -3,7 +3,7 @@
PORTNAME= arpCounterattack
PORTVERSION= 1.2.0
-PORTREVISION= 6
+PORTREVISION= 7
CATEGORIES= security
MASTER_SITES= http://isis.poly.edu/~bk/${PORTNAME}/ \
http://bk.macroblock.net/${PORTNAME}/
@@ -11,14 +11,15 @@ MASTER_SITES= http://isis.poly.edu/~bk/${PORTNAME}/ \
MAINTAINER= ports@FreeBSD.org
COMMENT= Detects and remedies ARP attacks
-LIB_DEPENDS= libdnet.so:net/libdnet
+LIB_DEPENDS= libdnet.so:net/libdnet \
+ libpcap.so:net/libpcap
USES= compiler:c++11-lib tar:tbz
USE_CSTD= c++11
-SUB_FILES= pkg-message
-
USE_RC_SUBR= ${PORTNAME}
+SUB_FILES= pkg-message
+
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/arpCounterattack
${INSTALL_PROGRAM} ${WRKSRC}/arpCounterattack \
diff --git a/security/arpCounterattack/files/patch-address.hpp b/security/arpCounterattack/files/patch-address.hpp
index 57fb6a54fa1e..0e97021a49fe 100644
--- a/security/arpCounterattack/files/patch-address.hpp
+++ b/security/arpCounterattack/files/patch-address.hpp
@@ -1,4 +1,4 @@
---- address.hpp.orig 2010-09-28 18:12:26.000000000 +0000
+--- address.hpp.orig 2010-09-28 18:12:26 UTC
+++ address.hpp
@@ -28,7 +28,7 @@
#include <sys/socket.h>
@@ -18,7 +18,7 @@
return std::string((char*)binaryEthernetAddress.octet, ETHER_ADDR_LEN);
#endif
#ifdef __linux__
-@@ -60,7 +60,7 @@ std::string textToEthernet(const std::st
+@@ -60,7 +60,7 @@ std::string textToEthernet(const std::string &textEthe
std::string ethernetToText(const char *binaryEthernetAddress) {
ether_addr _binaryEthernetAddress;
char textEthernetAddress[17];
diff --git a/security/arpCounterattack/files/patch-arpCounterattack.cpp b/security/arpCounterattack/files/patch-arpCounterattack.cpp
index c1a28076eca0..adfdcf8f0be9 100644
--- a/security/arpCounterattack/files/patch-arpCounterattack.cpp
+++ b/security/arpCounterattack/files/patch-arpCounterattack.cpp
@@ -1,6 +1,6 @@
---- arpCounterattack.cpp.orig 2010-11-04 01:26:49.000000000 +0000
+--- arpCounterattack.cpp.orig 2019-03-13 08:10:31 UTC
+++ arpCounterattack.cpp
-@@ -25,7 +25,7 @@
+@@ -25,13 +25,14 @@
#include <fstream>
#include <iostream>
#include <queue>
@@ -9,7 +9,14 @@
#include <vector>
#ifdef __FreeBSD__
-@@ -47,7 +47,6 @@
+ #include <sys/ioctl.h>
+ #endif
+
++#include <net/bpf.h>
+ #include <errno.h>
+ #include <pcap.h>
+ #include <signal.h>
+@@ -47,7 +48,6 @@
#include "string.hpp"
using namespace std;