diff options
author | kleink <kleink@pkgsrc.org> | 2001-11-28 13:44:51 +0000 |
---|---|---|
committer | kleink <kleink@pkgsrc.org> | 2001-11-28 13:44:51 +0000 |
commit | ad1ab47c7b854743f0339a2d43e80e1ca6a44aaf (patch) | |
tree | 4c21c36f961f400619d97cc9ea4f60df261b928f /net/snort | |
parent | 7871eea1efb8de2eac43b8ea49051ba6549133fc (diff) | |
download | pkgsrc-ad1ab47c7b854743f0339a2d43e80e1ca6a44aaf.tar.gz |
Update snort to 1.8.2; changes since 1.8.1 include:
* fixed UTC timestamps
* fixed SIGUSR1 handling, should reset properly now after getting
a signal
* fixed PID path generation code, PID files go in the right place
now
* fixed stability problems in stream4
* fixed stability problems in frag2
* tweaks to spo_unified for better integration with barnyard
* added -f switch to turn off fflush() calls in binary logging mode
* added new config keyword to stream4, "log_flushed_streams", which
causes all buffered packets in the stream reassembler for that
session to be logged in the event of an event on that stream
(must be used in conjunction with spo_log_tcpdump)
* added packet precacheing for flexresp TCP packets, responses
should be generated more quickly
* fixed rules parser code for various failure modes
* several new rules files and a new classification system
Diffstat (limited to 'net/snort')
-rw-r--r-- | net/snort/Makefile | 7 | ||||
-rw-r--r-- | net/snort/PLIST | 9 | ||||
-rw-r--r-- | net/snort/distinfo | 8 | ||||
-rw-r--r-- | net/snort/patches/patch-aa | 10 |
4 files changed, 20 insertions, 14 deletions
diff --git a/net/snort/Makefile b/net/snort/Makefile index 2092cd613c8..9168458275c 100644 --- a/net/snort/Makefile +++ b/net/snort/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.12 2001/09/11 16:12:56 wiz Exp $ +# $NetBSD: Makefile,v 1.13 2001/11/28 13:44:51 kleink Exp $ # -DISTNAME= snort-1.8.1-RELEASE -PKGNAME= ${DISTNAME:C/-RELEASE//} +DISTNAME= snort-1.8.2 CATEGORIES= net security -MASTER_SITES= http://www.snort.org/Files/ \ +MASTER_SITES= http://www.snort.org/releases/ \ ftp://the.wiretapped.net/pub/security/network-intrusion-detection/snort/ \ http://www.centus.com/snort/ \ http://snort.whitehats.com/ \ diff --git a/net/snort/PLIST b/net/snort/PLIST index 8949db6886c..4917ed2f697 100644 --- a/net/snort/PLIST +++ b/net/snort/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1 2001/10/31 22:59:01 zuntum Exp $ +@comment $NetBSD: PLIST,v 1.2 2001/11/28 13:44:51 kleink Exp $ bin/snort man/man8/snort.8 share/doc/snort/AUTHORS @@ -23,7 +23,9 @@ share/doc/snort/SnortUsersManual.pdf share/doc/snort/USAGE share/snort/MIBS/SnortCommonMIB.txt share/snort/MIBS/SnortIDAlertMIB.txt +share/snort/attack-responses.rules share/snort/backdoor.rules +share/snort/bad-traffic.rules share/snort/classification.config share/snort/ddos.rules share/snort/dns.rules @@ -32,11 +34,13 @@ share/snort/exploit.rules share/snort/finger.rules share/snort/ftp.rules share/snort/icmp.rules +share/snort/icmp-info.rules share/snort/info.rules share/snort/local.rules share/snort/misc.rules share/snort/netbios.rules share/snort/policy.rules +share/snort/porn.rules share/snort/rpc.rules share/snort/rservices.rules share/snort/scan.rules @@ -45,6 +49,9 @@ share/snort/smtp.rules share/snort/snort.conf share/snort/sql.rules share/snort/telnet.rules +share/snort/tftp.rules +share/snort/virus.rules +share/snort/web-attacks.rules share/snort/web-cgi.rules share/snort/web-coldfusion.rules share/snort/web-frontpage.rules diff --git a/net/snort/distinfo b/net/snort/distinfo index b1fc347e421..3cf57896bf1 100644 --- a/net/snort/distinfo +++ b/net/snort/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2001/11/07 03:03:05 hubertf Exp $ +$NetBSD: distinfo,v 1.7 2001/11/28 13:44:51 kleink Exp $ -SHA1 (snort-1.8.1-RELEASE.tar.gz) = 0a167b87b51a62bc9bbf06ef84e2941574327af9 -Size (snort-1.8.1-RELEASE.tar.gz) = 1026894 bytes -SHA1 (patch-aa) = cb6a8ec346646a3e1a28163eccea773f152c3cfc +SHA1 (snort-1.8.2.tar.gz) = fb992923f1998cd090693d640dafbd38fe232387 +Size (snort-1.8.2.tar.gz) = 909339 bytes +SHA1 (patch-aa) = 289c515c2eaf62dcba44bea668dc60a0abd57d51 diff --git a/net/snort/patches/patch-aa b/net/snort/patches/patch-aa index 4b9a46230e2..221ef383237 100644 --- a/net/snort/patches/patch-aa +++ b/net/snort/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.4 2001/11/07 03:03:06 hubertf Exp $ +$NetBSD: patch-aa,v 1.5 2001/11/28 13:44:52 kleink Exp $ ---- snort.c.orig Fri Aug 10 22:39:52 2001 -+++ snort.c +--- snort.c.orig Fri Nov 2 07:18:29 2001 ++++ snort.c Wed Nov 28 14:04:21 2001 @@ -43,6 +43,9 @@ /* I N C L U D E S **********************************************************/ @@ -10,9 +10,9 @@ $NetBSD: patch-aa,v 1.4 2001/11/07 03:03:06 hubertf Exp $ +#include <sys/param.h> +#endif + /* G L O B A L S ************************************************************/ - extern OutputFuncNode *AlertList; -@@ -1386,6 +1389,19 @@ +@@ -1413,6 +1416,19 @@ break; |