diff options
author | agc <agc@pkgsrc.org> | 2001-10-11 15:37:55 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-10-11 15:37:55 +0000 |
commit | 6e8bb3dd559733a6c281e102ebdbddef8aa17a64 (patch) | |
tree | 3bffeb8876b0687041e9dc1c13982dd7de9959ab /net/nemesis/patches | |
parent | 4ff17aaf82ac2d1d1fe10c4e0ff145e3570a3537 (diff) | |
download | pkgsrc-6e8bb3dd559733a6c281e102ebdbddef8aa17a64.tar.gz |
Initial import of nemesis-1.32 into the NetBSD Packages Collection.
nemesis is a command-line UNIX network packet injection suite.
supported protocols: TCP, UDP, ICMP, ARP/RARP, IGMP, DNS,
RIP, and OSPF
"Nemesis attacks directed through fragrouter could be a most
powerful combination for the system auditor to find security
problems that could then be reported to the vendor(s), etc."
- Curt Wilson in Global Incident Analysis Center Detects Report
(SANS Institute - Nov 2000)
Provided in PR 14021 by xs@nitric.net.
Munged slightly by me to use buildlink functionality, and to use the
correct link time invocations for ELF binaries.
Diffstat (limited to 'net/nemesis/patches')
-rw-r--r-- | net/nemesis/patches/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/nemesis/patches/patch-aa b/net/nemesis/patches/patch-aa new file mode 100644 index 00000000000..19cdc08c21e --- /dev/null +++ b/net/nemesis/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/10/11 15:37:55 agc Exp $ + +Make sure that ELF libs are linked into the binary properly + +--- Makefile.in.orig Sun Jun 10 01:15:24 2001 ++++ Makefile.in Thu Oct 11 16:30:18 2001 +@@ -39,7 +39,7 @@ + # + DEFINES += @OS_S_DEFINES@ `libnet-config --defines` + CFLAGS = @CFLAGS@ -I@prefix@/include +-LIBS = -L@prefix@/lib -lnet -lpcap @ADDITIONAL_LIBS@ ++LIBS = -L@prefix@/lib -Wl,-R@prefix@/lib -lnet `libnet-config --libs` -lpcap @ADDITIONAL_LIBS@ + + ARP_OBJ = nemesis-arp.o nemesis-proto_arp.o + DNS_OBJ = nemesis-dns.o nemesis-proto_dns.o |