diff options
author | adrianp <adrianp@pkgsrc.org> | 2005-08-13 19:56:47 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2005-08-13 19:56:47 +0000 |
commit | 8ab84e9d390910e5db82ff34d1772ab0e6a2251d (patch) | |
tree | 84a060fd2c2481e7937a652e2635ff337142539d /net/snort/patches | |
parent | cc1e46bc65e594b2d7b9e07476e2703d07b4beaf (diff) | |
download | pkgsrc-8ab84e9d390910e5db82ff34d1772ab0e6a2251d.tar.gz |
Update snort to 2.4.0
If you are using this package make note of the distribution change
mentioned below. I have update the MESSAGE to inform users of this and
there is now also a net/snort-rules package with the community rules.
> [*] Distribution Change
> * Rules are no longer distributed as part of the Snort releases, they are
> available as a separate download from snort.org. This was done for
> three reasons:
> 1) To better manage the new rules licensing.
> 2) To reduce the size of the engine download.
> 3) To move the thousands of documentation files for the rules into
> the rules tarballs. If you've ever checked Snort out of CVS you'll
> know why this is a Good Thing.
>
> [*] New additions
> * Added new IP defragmentation preprocessor, Frag3. The frag3 preprocessor
> is a target-based IP defragmentation module, and is intended as a
> replacement for the frag2 module. Check out the README.frag3 for full
> info on this new preprocessor.
>
> * Libprelude support has been added (enable with --enable-prelude).
> Thanks Yoann Vandoorselaere!
>
> * An "ftpbounce" rule detection plugin was added for easier detection of
> FTP bounce attacks.
>
> * Added a new Snort config option, "ignore_ports," to ignore packets
> based on port number. This is similar to bpf filters, but done within
> snort.conf.
>
> [*] Improvements
> * Snort startup messages printed in syslog now contain a PID before each
> entry. Thanks Sekure for initially bringing this up.
>
> * Stream4: Performance improvements.
>
> * Stream4: Added 'max_session_limit' option which limits number of
> concurrent sessions tracked. Added favor_old/favor_new options that
> affect order in which packets are put together for reassembly.
>
> * Stream4: New configuration options to manage flushpoints for improved
> anti-evasion. The flush_behavior option selects flushpoint management
> mode. New flush_base, flush_range, and flush_seed manage randomized
> flushing. Check out the snort.conf file for full config data on the
> new flush options.
>
> * Added two more alerts for BackOrifice client and server packets. This
> allows specific alerts to be suppressed.
>
> * PerfMon preprocessor updated to include more detailed stats for rebuilt
> packets (applayer, wire, fragmented & TCP). Also added 'atexitonly'
> option that dumps stats at exit of snort, and command line -Z flag to
> specify the file to which stats are logged.
>
> * Added new Http Inspect config item, "tab_uri_delimiter," which if
> specified, lets a tab character (0x09) act as the delimiter for a URI.
>
> * Added a '-G' command line flag to snort that specifies the Snort
> instance log identifier. It takes a single argument that can be either
> hex (prefaced with 0x) or decimal. The unified log files will include
> the instance ID when the -G flag is used.
>
> * "Same SRC/DST" (sid 527) and "Loopback Traffic" (sid 528) are now
> handled in the IP decoder. Those sids are now considered obsolete.
>
> * Http_Inspect "flow_depth" option now accepts a -1 value which tells
> Snort to ignore all server-side traffic.
>
> * RPMs have been updated to be more portable, and also now include a
> "--with inline" option for those wanting to build Inline RPMs. Thanks
> Daniel Wittenberg and JP Vossen for your help!
>
> * Many, many bug fixes have also gone into this release, please see the
> ChangeLog for details.
Diffstat (limited to 'net/snort/patches')
-rw-r--r-- | net/snort/patches/patch-aa | 4 | ||||
-rw-r--r-- | net/snort/patches/patch-ad | 13 |
2 files changed, 2 insertions, 15 deletions
diff --git a/net/snort/patches/patch-aa b/net/snort/patches/patch-aa index 1ed1483a7a5..c087fb4abf8 100644 --- a/net/snort/patches/patch-aa +++ b/net/snort/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.11 2004/01/31 20:43:41 kristerw Exp $ +$NetBSD: patch-aa,v 1.12 2005/08/13 19:56:47 adrianp Exp $ --- src/snort.c.orig Wed Dec 3 16:22:22 2003 +++ src/snort.c Sat Jan 31 21:25:32 2004 @@ -26,7 +26,7 @@ $NetBSD: patch-aa,v 1.11 2004/01/31 20:43:41 kristerw Exp $ struct stat st; int i; - char *conf_files[]={"/etc/snort.conf", "./snort.conf", NULL}; -+ char *conf_files[]={ PKG_SYSCONFDIR "/snort.conf", "./snort.conf", NULL}; ++ char *conf_files[]={ "@PKG_SYSCONFDIR@/snort.conf", "./snort.conf", NULL}; char *fname = NULL; char *home_dir = NULL; char *rval = NULL; diff --git a/net/snort/patches/patch-ad b/net/snort/patches/patch-ad deleted file mode 100644 index 2c6c8472ea1..00000000000 --- a/net/snort/patches/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ad,v 1.3 2003/04/16 15:51:24 salo Exp $ - ---- src/Makefile.in.orig 2003-04-09 18:01:40.000000000 +0200 -+++ src/Makefile.in 2003-04-16 08:07:17.000000000 +0200 -@@ -67,7 +67,7 @@ - PATH_SEPARATOR = @PATH_SEPARATOR@ - AMTAR = @AMTAR@ - AWK = @AWK@ --CC = @CC@ -+CC = @CC@ -DPKG_SYSCONFDIR=\"@sysconfdir@\" - DEPDIR = @DEPDIR@ - - INCLUDES = @INCLUDES@ |