diff options
author | obrien <obrien@FreeBSD.org> | 2000-02-14 10:59:36 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-02-14 10:59:36 +0800 |
commit | 2b31e56b29741729fb62be17d9544b7f1ab51fb9 (patch) | |
tree | 11fd5df819a4ffc8a8939810a0d5c4dc389492e5 /security/rid/files | |
parent | 0529c8f0e1a2fef6a48dd8ac1c876600935e7f07 (diff) | |
download | freebsd-ports-gnome-2b31e56b29741729fb62be17d9544b7f1ab51fb9.tar.gz freebsd-ports-gnome-2b31e56b29741729fb62be17d9544b7f1ab51fb9.tar.zst freebsd-ports-gnome-2b31e56b29741729fb62be17d9544b7f1ab51fb9.zip |
RID is a configurable tool which uses intrusion fingerprints to track down
compromised hosts. RID can remotely detect Stacheldraht, TFN, Trinoo and TFN2k
if the attacker did not change the default ports.
Diffstat (limited to 'security/rid/files')
-rw-r--r-- | security/rid/files/patch-Makefile | 11 | ||||
-rw-r--r-- | security/rid/files/patch-parser.l | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/security/rid/files/patch-Makefile b/security/rid/files/patch-Makefile new file mode 100644 index 000000000000..3403d9a62d28 --- /dev/null +++ b/security/rid/files/patch-Makefile @@ -0,0 +1,11 @@ +--- Makefile.orig Tue Feb 8 18:23:08 2000 ++++ Makefile Sun Feb 13 18:32:40 2000 +@@ -1,6 +1,6 @@ + +-CC=gcc +-LIBS=-lsocket -lnsl -lpcap -ll -ly ++#CC=gcc ++LIBS=-lpcap + SRCS = sender.c main.c pinger.c y.tab.c lex.yy.c listen.c + OBJS = sender.o main.o pinger.o y.tab.o lex.yy.o listen.o + CFLAGS=-g diff --git a/security/rid/files/patch-parser.l b/security/rid/files/patch-parser.l new file mode 100644 index 000000000000..4b89a6c774b5 --- /dev/null +++ b/security/rid/files/patch-parser.l @@ -0,0 +1,8 @@ +--- parser.l.orig Fri Jan 28 11:37:32 2000 ++++ parser.l Sun Feb 13 18:32:00 2000 +@@ -1,4 +1,5 @@ + %{ ++#include <sys/types.h> + #include <stdio.h> + #include <stdlib.h> + #include <strings.h> |