root/fwsnort/tags/fwsnort_0_8_1/ChangeLog

Revision 265, 6.0 KB (checked in by mbr, 5 years ago)

rpm package

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1fwsnort-0.8.1 (11//2005):
2    - Updated to use the string match extension "--algo bm" argument if
3      fwsnort is being run on a 2.6.14 (or greater) kernel.
4    - Updated to handle the Snort "offset" and "depth" keywords via the
5      --from and --to options to the string match extension in the 2.6.14
6      kernel.
7    - Created RPM package of fwsnort.
8    - Minor man page updates.
9
10fwsnort-0.8.0 (07/11/2005):
11    - Completely re-structured fwsnort w.r.t. how it creates Netfilter
12      chains.  There are no longer any per-interface chains (this
13      greatly simplifies the Netfilter chains).
14    - Added three new chains "FWSNORT_INPUT_ESTAB", "FWSNORT_OUTPUT_ESTAB"
15      and "FWSNORT_FORWARD_ESTAB" to which tcp connections in the
16      ESTABLISHED state are jumped.  This allows fwsnort to use the
17      Netfilter tcp connection tracking mechanism to ignore Stick and Snot
18      style attacks (similar to the flow:established Snort rule option).
19    - Added true variable resolution (i.e. HTTP_SERVERS -> HOME_NET -> any)
20      for the Snort rule header.  This directly emulates the behavior of
21      the Snort IDS.
22    - Added IP protocol support in the translation of the Snort rule
23      header.  The Snort rule translation rate is now at about 53% for
24      Snort-2.3.
25    - Bugfix for ipopts Snort option (several arguments are not supported
26      by the ipv4options extension).
27    - Better tests for Netfiler TTL, TOS, and ipv4options matches.
28    - Replaced IGNORE_IP and IGNORE_NET keywords with single IGNORE_ADDR
29      keywork in fwsnort.conf.
30    - Updated to correctly handle ICMP type and code rules (itype and
31      icode Snort options) via the "--icmp-types type/code" convention.
32    - Added support for emulating the dsize Snort option through the use
33      of the Netfilter length match.
34    - Changed --type argument to --include-types and added list support
35      so it accepts things like "chat,ddos".  Also added --exclude-types
36      command line argument.
37    - Added support for multiple sid's (as a comma separated list) in
38      --snort-sids argument.  Also added --exclude-sids argument to remove
39      a list of sids from translation.
40    - Added support for the replace Snort option (originally from the
41      Snort_inline project).  The requires the replace string patch.
42    - Added support for restricting jump rules to a list of interfaces
43      via the --restrict-intf argument.
44    - Added kernel patch to extend the maximum packet length that the
45      string match extension will attempt to search from 1024 bytes to
46      2048 bytes (requires a kernel re-compile of course).
47    - Added DRP and REJ strings to logging prefix if --ipt-drop or
48      --ipt-reject is specified.
49    - Added snortspoof.pl, which is a simple perl script that emulates
50      the Stick and Snot tools.
51
52fwsnort-0.7.0 (06/05/2005):
53    - Added support for the Snort pass action by using the ACCEPT target.
54    - Added support for the Snort log action by using the ULOG target
55      (which can then log the packet via the pcap writer).
56    - Added support for all fwsnort alerts to be logged via the ULOG
57      target instead of the LOG target.
58    - Added support for the "resp" keyword to allow it to drive the
59      Netfilter argument to the REJECT target.
60    - Added "pcre" to the unsupported list... this knocks the fwsnort
61      translation rate down to about 50% for Snort-2.3 rules (pcre is
62      heavily utilized).
63    - Added "priority" and "rev" to comment lines.
64
65fwsnort-0.6.5 (03/20/2005):
66    - Updated to not attempt to download Snort rules from snort.org
67      because the rules are no longer available for automatic downloads
68    - Changed the install.pl script and the --update-rules mode for
69      fwsnort to download the latest signature set from
70      http://www.bleedingsnort.com/.
71      (Snort.org is now offering pay-service around their rule sets).
72    - Added signature test for the "flowbits" keyword.
73
74fwsnort-0.6.4 (12/18/2004):
75    - Updated to Snort-2.3 rules.  FWSnort can convert a total of 1710
76      out of 2559 total Snort-2.3 rules.
77    - Updated to new Snort rules download link for --update-rules mode:
78      http://www.snort.org/dl/rules/snortrules-snapshot-CURRENT.tar.gz
79    - Updated to standard [+], [-], and [*] prefixes for info, warning
80      and die logging messages.
81    - Added --replace-string patches.
82
83fwsnort-0.6.3 (04/04/2004):
84    - Added ignore functionality for both IPs and networks
85    - Split --ipt-block into --ipt-drop and --ipt-reject to add DROP
86      or REJECT rules respectively.
87    - Added --add-deleted option to allow rules in the "deleted.rules"
88      file to be added.
89
90fwsnort-0.6.2 (03/19/2004):
91    - Added --internal-net and --dmz-net options so that internal and
92      dmz networks can be manually specified without having to parse
93      the output of ifconfig.  This is most useful for running fwsnort
94      on a linux system that is acting as a bridge where no ip addresses
95      are assigned to the interfaces.
96    - Bugfix for missing icmp-port-unreachable rejects for UDP packets.
97
98fwsnort-0.6.1 (02/01/2004):
99    - Bugfix for not adding dmz interface rules to INPUT chain.
100    - Bugfix for not getting the DMZ interface network.
101
102fwsnort-0.6 (01/04/2004):
103    - Speed increase and disk access decrease by writing iptables
104      commands to the iptables script only after all lines have been
105      generated.
106    - Bugfix for DMZ interface.
107    - Bugfix for multiple ip_proto fields.
108    - Removed the ip protocol as an allowed protocol for translation.
109    - Bugfix for negated port numbers.
110    - Removed "<-" rule direction since not even snort supports this.
111    - Fixed snort rule updates from snort.org.
112
113fwsnort-0.5 (12/21/2003):
114    - Added "-j REJECT --reject-with tcp-reset" for tcp sessions
115      if the --ipt-block option is specified.
116    - Added ability to download latest snort rules from snort.org.
117    - Added --no-ipt-jumps.
118    - Added better checking for iptables build characteristics such
119      as the LOG target and wether or not the ipv4options extension
120      is compiled in.
121    - Added config preservation code from psad in install.pl.
Note: See TracBrowser for help on using the browser.