1 fwsnort-1.6.2 (04/28/2012):
2 - Switched --no-ipt-sync to default to not syncing with the iptables policy.
3 By default fwsnort attempts to match translated Snort rules to the
4 running iptables policy, but this is tough to do well because iptables
5 policies can be complex. And, before fwsnort switched to the
6 iptables-save format for instantiating the policy, a large set of
7 translated rules could take a really long time to make active within the
8 kernel. Finally, many Snort rules restrict themselves to established TCP
9 connections anyway, and if a restrictive policy doesn't allow connections
10 to get into the established state for some port let's say, then there is
11 little harm in having translated Snort rules for this port. Some kernel
12 memory would be wasted (small), but no performance would be lost since
13 packets won't be processed against these rules anyway. The end result is
14 that the default behavior is now to not sync with the local iptables
15 policy in favor of translating and instantiating as many rules as
17 - Replaced Net::IPv4Addr with the excellent NetAddr::IP module which has
18 comprehensive support for IPv6 address network parsing and comparisons.
19 - Moved the fwsnort.sh script and associated files into the
20 /var/lib/fwsnort/ directory. This was suggested by Peter Vrabec.
21 - Bug fix for recent versions of iptables (such as 1.4.12) where the icmp
22 match requires --icmp-type to be set - some Snort rules look for a string
23 to match in icmp traffic, but don't also specify an icmp type.
24 - Bug fix for 'qw(...) usage as parenthesis' warnings for perl > 5.14
25 - Removed the ExtUtils::MakeMaker RPM build requirement from the
26 fwsnort.spec file. This is a compromise which will allow the fwsnort RPM
27 to be built even if RPM dosen't or can't see that ExtUtils::MakeMaker is
28 installed - most likely it will build anyway. If it doesn't, there are
29 bigger problems since fwsnort is written in perl. If you want to build
30 the fwsnort RPM with a .spec file that requires ExtUtils::MakeMaker, then
31 use the "fwsnort-require-makemaker.spec" file that is bundled in the
34 fwsnort-1.6.1 (11/01/2011):
35 - (Kim Hagen) submitted a patch for a bug in fwsnort-1.6 where the fwsnort
36 policy in iptables-save format could not be loaded whenever iptables-save
37 put the nat table output after the filter table output. In this case,
38 fwsnort would fail with an error like the following:
41 `FWSNORT_FORWARD_ESTAB':/lib/xtables/libipt_FWSNORT_FORWARD_ESTAB.so:
42 cannot open shared object file: No such file or directory
44 fwsnort now invokes 'iptables-save -t filter' in order to ensure that
45 ordering issues do not affect how fwsnort builds its translated rule set.
46 - Bug fix to ensure that fwsnort does not attempt to re-order pattern
47 matches for patterns that have a relative match requirement. For non-
48 relative matches fwsnort re-orders pattern matches based on the pattern
49 length, reasoning that the longest pattern should be processed first for
50 better performance. The usage of the fast_pattern keyword give the user
51 explicit control over this. Here is a Snort rule that is now properly
52 handled by fwsnort (references removed):
54 alert tcp $EXTERNAL_NET $HTTP_PORTS -> $HOME_NET any (msg:"ET WEB_CLIENT
55 Possible Adobe Reader and Acrobat Forms Data Format Remote Security
56 Bypass Attempt"; flow:established,to_client; file_data; content:"%FDF-";
57 depth:300; content:"/F(JavaScript|3a|"; nocase; distance:0;
58 classtype:attempted-user; sid:2010664; rev:8;)
60 Before this change, fwsnort translated this rule as:
62 $IPTABLES -A FWSNORT_FORWARD_ESTAB -p tcp -m tcp --sport 80 -m string
63 --hex-string "/F(JavaScript|3a|" --algo bm --from 69 --icase -m string
64 --hex-string "%FDF|2d|" --algo bm --to 364 -m comment --comment
65 "sid:2010664; msg:ET WEB_CLIENT Possible Adobe Reader and Acrobat Forms
66 Data Format Remote Security Bypass Attempt; classtype:attempted-user;
67 rev:8; FWS:1.6;" -j LOG --log-ip-options --log-tcp-options --log-prefix
70 Note that in the above rule, the "/F(JavaScript|3a|" pattern was switched
71 to be evaluated first even though it is a relative match to the previous
72 pattern in the original Snort rule. After this change, fwsnort translates
75 $IPTABLES -A FWSNORT_FORWARD_ESTAB -p tcp -m tcp --sport 80 -m string
76 --hex-string "%FDF|2d|" --algo bm --to 364 -m string --hex-string
77 "/F(JavaScript|3a|" --algo bm --from 69 --icase -m comment --comment
78 "sid:2010664; msg:ET WEB_CLIENT Possible Adobe Reader and Acrobat Forms
79 Data Format Remote Security Bypass Attempt; classtype:attempted-user;
80 rev:8; FWS:1.6;" -j LOG --log-ip-options --log-tcp-options --log-prefix
83 - Updated to the latest Emerging Threats rule set.
85 fwsnort-1.6 (07/28/2011):
86 - Fixed the --ipt-apply functionality - the variable that held the
87 fwsnort.sh path was not initialized properly prior to this change.
88 - Added the --Conntrack-state argument to specify a conntrack state
89 in place of the "established" state that commonly accompanies the Snort
90 "flow" keyword. By default, fwsnort uses the conntrack state of
91 "ESTABLISHED" for this. In certain corner cases, it might be useful to
92 use "ESTABLISHED,RELATED" instead to apply application layer inspection
93 to things like ICMP port unreachable messages that are responses to real
94 attempted communications. (Need to add UDP tracking for the _ESTAB
95 chains for this too - coming soon.)
96 - Recent releases of iptables and the Linux kernel support matching on
97 connection state via the conntrack modules and the --ctstate switch.
98 Added a capabilities test for this, and will fall back to using the state
99 match if the conntrack module is not available.
100 - Bugfix to ensure the iptables log prefixes built by fwsnort are not
101 longer than those allowed by the running iptables firewall. This is
102 usually a total of 29 characters, but fwsnort now dynamically figures out
104 - Bugfix for --ipt-list and --ipt-flush to ensure that the proper iptables
105 binary path is chosen. These args failed without this because the
106 iptables binary was not set.
108 fwsnort-1.5 (01/08/2011):
109 - Major update to use the iptables-save format instead of the older
110 strategy of always just executing iptables commands directly (which was
111 very flow for large fwsnort policies). The /etc/fwsnort/fwsnort.sh
112 script now just executes:
114 /sbin/iptables-restore < /etc/fwsnort/fwsnort.save
116 All fwsnort rules are now placed in the /etc/fwsnort/fwsnort.save file,
117 but the older fwsnort.sh output (for the individual commands version)
118 is still available at /etc/fwsnort/fwsnort_iptcmds.sh. This
119 functionality extends to ip6tables policies as well. The fwsnort man
120 page explain this in better detail:
122 "As of fwsnort-1.5 all iptables rules built by fwsnort are written out
123 to the /etc/fwsnort/fwsnort.save file in iptables-save format. This
124 allows a long fwsnort policy (which may contain thousands of iptables
125 rules translated from a large Snort signature set) to be quickly
126 instantiated via the "iptables-restore" command. A wrapper script
127 /etc/fwsnort/fwsnort.sh is also written out to make this easy. Hence,
128 the typical work flow for fwsnort is to: 1) run fwsnort, 2) note the
129 Snort rules that fwsnort was able to successfully translate (the number
130 of such rules is printed to stdout), and then 3) execute the
131 /etc/fwsnort/fwsnort.sh wrapper script to instantiate the policy in the
134 - Added the --rules-url argument so that the URL for updating the
135 Emerging Threats rule set can be specified from the command line. The
138 http://rules.emergingthreats.net/open/snort-2.9.0/emerging-all.rules
140 - Updated to automatically check for the maximum length string that the
141 string match supports, and this is used to through out any Snort rules
142 with content matches longer than this length.
143 - Updated the iptables capabilities testing routines to add and delete
144 testing rules to/from the custom chain 'FWS_CAP_TEST'. This maintains a
145 a cleaner separation between fwsnort and any existing iptables policy
146 even during the capabilities testing phase.
147 - Added the --ipt-check-capabilities argument to have fwsnort test the
148 capabilities of the local iptables firewall and exit.
149 - Added the --string-match-alg argument to allow the string matching
150 algorithm used by fwsnort to be specified from the command line. The
151 default algorithm is 'bm' for 'Boyer-Moore', but 'kmp' may also be
152 specified (short for the 'Knuth–Morris–Pratt' algorithm).
153 - Updated to the latest complete rule set from Emerging Threats (see
154 http://www.emergingthreats.net/).
156 fwsnort-1.1 (01/05/2010):
157 - Added the ability to build an fwsnort policy that utilizes ip6tables
158 instead of iptables. This allows fwsnort filtering and altering
159 capabilities to apply to IPv6 traffic instead of just IPv4 traffic. To
160 enable ip6tables usage, use the "-6" or "--ip6tables" command line
162 - Added the --include-perl-triggers command line argument so that
163 translated Snort rules can easily be tested. This argument instructs
164 fwsnort to include 'perl -e print ... ' commands as comments in the
165 /etc/fwsnort/fwsnort.sh script, and these commands can be combined
166 with netcat to send payloads across the wire that match Snort rules.
167 - Updated fwsnort to create logs in the /var/log/fwsnort/ directory
168 instead of directly in the /var/log/ directory. The path is controlled
169 by a new variable 'LOG_FILE' in the /etc/fwsnort/fwsnort.conf file.
170 - Added several variables in /etc/fwsnort/fwsnort.conf to control paths
171 to everything from the config file to the snort rules path. Coupled
172 with this is the ability to create variables within path components and
173 fwsnort will expand them (e.g. 'CONF_DIR /etc/fwsnort;
174 CONF_FILE $CONF_DIR/fwsnort.conf').
175 - Added --Last-cmd arg so that it is easy to rebuild the fwsnort.sh script
176 with the same command line args as the previous execution.
178 fwsnort-1.0.6 (05/30/2009):
179 - (Franck Joncourt) Updated fwsnort to use the "! <option> <arg>" syntax
180 instead of the older "<option> ! <arg>" for the iptables command line.
181 - (Franck Joncourt) For the --hex-string and --string matches, if the
182 argument exceeds 128 bytes (iptables 1.4.2) then iptables fails with an
183 error "iptables v1.4.2: STRING too long". Fixes this with a patch that
184 adds a new variable in fwsnort.conf "MAX_STRING_LEN", so that the size of
185 the content can be limited. If the content (null terminated string) is
186 more than MAX_STRING_LEN chars, fwsnort throws the rule away.
187 - Bug fix to allow fwsnort to properly translate snort rules that have
188 "content" fields with embedded escaped semicolons (e.g. "\;"). This
189 allows fwsnort to translate about 58 additional rules from the Emerging
191 - Bug fix to allow case insensitive matches to work properly with the
192 --include-re-caseless and --exclude-re-caseless arguments.
193 - Bug fix to move the 'rawbytes' keyword to the list of keywords that are
194 ignored since iptables does a raw match anyway as it doesn't run any
195 preprocessors in the Snort sense.
196 - Added the --snort-rfile argument so that a specific Snort rules file (or
197 list of files separated by commas) is parsed.
198 - Added a small hack to choose the first port from a port list until the
199 iptables 'multiport' match is supported.
200 - Updated to consolidate spaces in hex matches in the fwsnort.sh script
201 since the spaces are not part of patterns to be searched anyway.
202 - Updated to the latest complete rule set from Emerging Threats (see
203 http://www.emergingthreats.net/).
204 - Added the "fwsnort-nobuildreqs.spec" file for building fwsnort on
205 systems (such as Debian) that do not install/upgrade software via RPM.
206 This file omits the "BuildRequires: perl-ExtUtils-MakeMaker" directive,
207 and this fixes errors like the following on an Ubuntu system when
208 building fwsnort with rpmbuild:
210 rpm: To install rpm packages on Debian systems, use alien. See README.Debian.
211 error: cannot open Packages index using db3 - No such file or directory (2)
212 error: cannot open Packages database in /var/lib/rpm
214 fwsnort-1.0.5 (08/21/2008):
215 - Replaced the bleeding-all.rules file with the emerging-all.rules file.
216 This is because Matt Jonkman now releases his rule sets at
217 http://www.emergingthreats.net/
218 - Restructured perl module paths to make it easy to introduce a "nodeps"
219 distribution of fwsnort that does not contain any perl modules. This
220 allows better integration with systems that already have all necessary
221 modules installed (including the IPTables::ChainMgr and IPTables::Parse
222 modules). The main driver for this work is to make all cipherdyne.org
223 projects easily integrated with distributions based on Debian, and
224 Franck Joncourt has been instrumental in making this process a reality.
225 All perl modules are now placed within the "deps" directory, and the
226 install.pl script checks to see if this directory exists - a separate
227 fwsnort-nodeps-<ver> tarball will be distributed without this directory.
228 The Debian package for fwsnort can then reference the -nodeps tarball,
229 and a new "fwsnort-nodeps.spec" file has been added to build an RPM from
230 the fwsnort sources that does not install any perl modules.
231 - Updated to import perl modules from /usr/lib/fwsnort, but only if this
232 path actually exists in the filesystem. This is similar to the strategy
233 implemented by psad. A new variable FWSNORT_LIBS_DIR was added to the
234 fwsnort.conf to support this.
235 - Added support for multiple Snort rule directories as a comma-separated
236 list for the argument to --snort-rdir.
237 - Moved 'threshold' to the unsupported list since there will be several
238 signatures that use this feature to detect the Dan Kaminsky DNS attack,
239 and fwsnort does not yet support the usage of the iptables --limit
242 fwsnort-1.0.4 (01/22/2008):
243 - (Grant Ferley) Submitted patch to exclude loopback interfaces from
244 iptables allow rules parsing. This behavior can be reversed with the
245 existing --no-exclude-loopback command line argument.
246 - (Grant Ferley) Submitted patch to IPTables::Parse to take into account
247 iptables policy output that contains "0" instead of "all" to represent
249 - (Grant Ferley) Submitted patch to IPTables::Parse to set sport and dport
250 to '0:0' if the protocol is 'all'.
251 - Bugfix to allow negated networks to be specified within iptables allow
252 rules or within the fwsnort.conf file.
253 - Updated install.pl to set the LC_ALL environmental variable to "C". This
254 should fix potential locale problems (this fix was borrowed from the
257 fwsnort-1.0.3 (11/22/2007):
258 - Added --include-re-caseless and --exclude-re-caseless options to have
259 --include-regex and --exclude-regex options match case insensitively.
260 - Major signature update from Bleeding Threats. This update includes a
261 large number of new signatures with PCRE statements, with an emphasis on
262 detecting SQL injection attacks directed at internal webservers from
264 - Added the ability to interpret PCRE statements that include simple
265 string matches separated by ".*" and ".+" as multiple iptables string
266 matches. The only negative consequence in terms of signature detection
267 is that ordering is not preserved; that is, the PCRE "/UNION.+SELECT/"
268 would only match a packet that contains "UNION" followed by "SELECT",
269 whereas an iptables rule that uses a string match for UNION and a
270 separate string match for SELECT would match a packet that contains both
271 strings but in reverse. Typically this is not a huge concern, and the
272 PCRE translation can be disabled with a new option --no-pcre.
273 - Added asn1 keyword to unsupported list.
275 fwsnort-1.0.2 (08/26/2007):
276 - Bugfix to make sure to add in header lengths for depth and offset values
277 since the string match extension compares bytes from the start of the
280 fwsnort-1.0.1 (08/26/2007):
281 - Bugfix for ipt_rule_test() function name.
282 - Added the ability to automatically resolve command paths if any commands
283 cannot be found at the locations specified in the fwsnort.conf file.
285 fwsnort-1.0 (04/19/2007):
286 - Major update to include support for the NFQUEUE and QUEUE targets with
287 new command line options --NFQUEUE and --QUEUE. This changes the
288 default LOG target to the NFQUEUE or QUEUE targets instead, and at the
289 same time builds a parallel Snort rule set in the
290 /etc/fwsnort/snort_rules_queue directory. Every Snort rule in this
291 directory has at least one "content" keyword, which fwsnort uses in the
292 resulting iptables policy. This policy only sends those packets to
293 snort_inline via the NFQUEUE or QUEUE target that match a content field
294 within some Snort rule. The end result is that snort_inline should run
295 faster because the vast majority of packets (which are not malicious)
296 are processed via the Linux kernel without ever having to be sent to
297 userspace for analysis. There is a tradeoff here in terms of attack
298 detection; snort_inline does not receive all packets associated with a
299 stream, so it cannot detect attacks quite as effectively (snort_inline
300 does not have an opportunity to look at reassembled buffers). However,
301 this trade off may be acceptable for large sites where performance is
303 - Bug fix to remove any existing jump rules from the built-in INPUT,
304 OUTPUT, and FORWARD chains before creating a new jump rules. This
305 allows the fwsnort.sh script to be executed multiple times without
306 creating a new jump rule into the fwsnort chains for each execution.
307 - Added the -X command line argument to allow fwsnort to delete all of
308 the fwsnort chains; this emulates the iptables command line argument
310 - Minor output enhancements and bugfixes to give more insight into the
311 translation process. For example, if fwsnort is run in --snort-sid
312 mode but is unable to translate the specified signatures, the user is
313 notified. Also, any existing /etc/fwsnort/fwsnort.sh script is not
314 archived and erased until fwsnort is actually going to write a new one.
315 - Added sid values to iptables comment match string.
316 - Bugfix for iptables string match --from and --to values to skip past
317 packet headers. This is an approximation until a new --payload option
318 can be added to the string match extension.
319 - Added a single iptables rule testing API internally within fwsnort;
320 this adds a measure of consistency and removes some duplicate code.
321 - Added fwsnort mailing list at SourceForge.
323 fwsnort-0.9.0 (03/22/2007):
324 - Added support for multiple content matches since this is supported by
325 iptables. This made a 10% increase in the fwsnort translation rate -
326 about 60% of all Snort-2.3.3 rules can be translated now.
327 - Added emulation for distance and within from previous content match
328 based on --from and --to (string match extension) and the length of
329 the previous pattern.
330 - Added the ability to include the Snort "msg", "classtype", "reference",
331 "priority", and "rev" fields in each iptables rule with the comment
332 match. This can be disabled with a new command line argument
333 --no-ipt-comments. The fwsnort version is also included within this
335 - Added the ability to include the iptables rule number for each rule in
336 the fwsnort chains. This is useful to easily know which iptables rule
337 is being triggered by network traffic (so it can be disabled if
338 necessary). This can be disabled with --no-ipt-rule-nums.
339 - Added the --include-regex and --exclude-regex command line arguments.
340 These arguments allow rules to be included/excluded based on a regular
341 expression supplied on the command line.
342 - Updated to include the original Snort rule as a comment within the
343 fwsnort.sh script without having to use --verbose.
344 - Bugfix to force install of IPTables::Parse since it had been updated in
345 the fwsnort-0.8.2 release.
346 - Changed the IGNORE_ADDR variable to WHITELIST since this name better
347 describes the actual function of this var. Updated to allow multiple
349 - Added the BLACKLIST variable to allow a true blacklist to be
350 instantiated with either the DROP or REJECT targets. The syntax for the
351 BLACKLIST variable is "BLACKLIST <ip or network> <target>", where
352 "target" is either "DROP" or "REJECT".
353 - Added -F and -L command line arguments to flush and list iptables rules.
354 This is similar to the iptables command line args of the same names.
355 - Bugfix to ensure that traffic directed into the INPUT or coming from the
356 OUTPUT chains is treated as going toward or originating from the
357 HOME_NET. After all the HOME_NET variable may contain an internal
358 network but omit the IP assigned to an external interface on the
360 - Added "--log-ip-options" and "--log-tcp-options" to fwsnort LOG rules by
361 default (in the generated fwsnort.sh script). This can be disabled with
362 --no-log-ip-opts and --no-log-tcp-opts arguments on the fwsnort command
364 - Added the ability to include --log-tcp-sequence to LOG rules in
365 fwsnort.sh with a new argument --ipt-log-tcp-seq on the fwsnort command
367 - Updated to handle negative string matches with "--string ! <string>".
368 - Updated to output all unsupported options of the /var/log/fwsnort.log
369 file to assist in the development of addition keyword emulation.
371 fwsnort-0.8.2 (02/17/2007):
372 - Updated to newer IPTables::Parse module that uses the array of hash
373 references method of returning iptables policy data.
374 - Added --Dump-ipt and --Dump-snort rules to allow iptables policy and
375 Snort rules to be dumped to STDOUT.
376 - Added bleeding-all.rules file from http://www.bleedingsnort.com/
377 - Added patches/bm_goodshift_fix.patch patch file that fixes an
378 initialization bug in the Boyer-Moore text search implementation in the
379 kernel (linux-2.6.x/lib/ts_bm.c) which caused slightly repetitive
380 patterns to only match at specific offsets with the string match
382 - Bugfix to ensure that a depth cannot be less that an offset (these
383 translate to the --to and --from command line arguments to iptables).
384 - Bugfix to escape '$' chars in iptables search strings.
385 - Added cd_rpmbuilder to make it easy to automatically build RPM files of
387 - Added support for the iptables OUTPUT chain.
388 - Added the ChangeLog.svn file so that all of the changed files and
389 corresponding svn commit messages can be viewed (this file is built from
392 fwsnort-0.8.1 (11/11/2005):
393 - Updated to use the string match extension "--algo bm" argument if
394 fwsnort is being run on a 2.6.14 (or greater) kernel.
395 - Updated to handle the Snort "offset" and "depth" keywords via the
396 --from and --to options to the string match extension in the 2.6.14
398 - Created RPM package of fwsnort.
399 - Minor man page updates.
401 fwsnort-0.8.0 (07/11/2005):
402 - Completely re-structured fwsnort w.r.t. how it creates Netfilter
403 chains. There are no longer any per-interface chains (this
404 greatly simplifies the Netfilter chains).
405 - Added three new chains "FWSNORT_INPUT_ESTAB", "FWSNORT_OUTPUT_ESTAB"
406 and "FWSNORT_FORWARD_ESTAB" to which tcp connections in the
407 ESTABLISHED state are jumped. This allows fwsnort to use the
408 Netfilter tcp connection tracking mechanism to ignore Stick and Snot
409 style attacks (similar to the flow:established Snort rule option).
410 - Added true variable resolution (i.e. HTTP_SERVERS -> HOME_NET -> any)
411 for the Snort rule header. This directly emulates the behavior of
413 - Added IP protocol support in the translation of the Snort rule
414 header. The Snort rule translation rate is now at about 53% for
416 - Bugfix for ipopts Snort option (several arguments are not supported
417 by the ipv4options extension).
418 - Better tests for Netfiler TTL, TOS, and ipv4options matches.
419 - Replaced IGNORE_IP and IGNORE_NET keywords with single IGNORE_ADDR
420 keywork in fwsnort.conf.
421 - Updated to correctly handle ICMP type and code rules (itype and
422 icode Snort options) via the "--icmp-types type/code" convention.
423 - Added support for emulating the dsize Snort option through the use
424 of the Netfilter length match.
425 - Changed --type argument to --include-types and added list support
426 so it accepts things like "chat,ddos". Also added --exclude-types
427 command line argument.
428 - Added support for multiple sid's (as a comma separated list) in
429 --snort-sids argument. Also added --exclude-sids argument to remove
430 a list of sids from translation.
431 - Added support for the replace Snort option (originally from the
432 Snort_inline project). The requires the replace string patch.
433 - Added support for restricting jump rules to a list of interfaces
434 via the --restrict-intf argument.
435 - Added kernel patch to extend the maximum packet length that the
436 string match extension will attempt to search from 1024 bytes to
437 2048 bytes (requires a kernel re-compile of course).
438 - Added DRP and REJ strings to logging prefix if --ipt-drop or
439 --ipt-reject is specified.
440 - Added snortspoof.pl, which is a simple perl script that emulates
441 the Stick and Snot tools.
443 fwsnort-0.7.0 (06/05/2005):
444 - Added support for the Snort pass action by using the ACCEPT target.
445 - Added support for the Snort log action by using the ULOG target
446 (which can then log the packet via the pcap writer).
447 - Added support for all fwsnort alerts to be logged via the ULOG
448 target instead of the LOG target.
449 - Added support for the "resp" keyword to allow it to drive the
450 Netfilter argument to the REJECT target.
451 - Added "pcre" to the unsupported list... this knocks the fwsnort
452 translation rate down to about 50% for Snort-2.3 rules (pcre is
454 - Added "priority" and "rev" to comment lines.
456 fwsnort-0.6.5 (03/20/2005):
457 - Updated to not attempt to download Snort rules from snort.org
458 because the rules are no longer available for automatic downloads
459 - Changed the install.pl script and the --update-rules mode for
460 fwsnort to download the latest signature set from
461 http://www.bleedingsnort.com/.
462 (Snort.org is now offering pay-service around their rule sets).
463 - Added signature test for the "flowbits" keyword.
465 fwsnort-0.6.4 (12/18/2004):
466 - Updated to Snort-2.3 rules. FWSnort can convert a total of 1710
467 out of 2559 total Snort-2.3 rules.
468 - Updated to new Snort rules download link for --update-rules mode:
469 http://www.snort.org/dl/rules/snortrules-snapshot-CURRENT.tar.gz
470 - Updated to standard [+], [-], and [*] prefixes for info, warning
471 and die logging messages.
472 - Added --replace-string patches.
474 fwsnort-0.6.3 (04/04/2004):
475 - Added ignore functionality for both IPs and networks
476 - Split --ipt-block into --ipt-drop and --ipt-reject to add DROP
477 or REJECT rules respectively.
478 - Added --add-deleted option to allow rules in the "deleted.rules"
481 fwsnort-0.6.2 (03/19/2004):
482 - Added --internal-net and --dmz-net options so that internal and
483 dmz networks can be manually specified without having to parse
484 the output of ifconfig. This is most useful for running fwsnort
485 on a linux system that is acting as a bridge where no ip addresses
486 are assigned to the interfaces.
487 - Bugfix for missing icmp-port-unreachable rejects for UDP packets.
489 fwsnort-0.6.1 (02/01/2004):
490 - Bugfix for not adding dmz interface rules to INPUT chain.
491 - Bugfix for not getting the DMZ interface network.
493 fwsnort-0.6 (01/04/2004):
494 - Speed increase and disk access decrease by writing iptables
495 commands to the iptables script only after all lines have been
497 - Bugfix for DMZ interface.
498 - Bugfix for multiple ip_proto fields.
499 - Removed the ip protocol as an allowed protocol for translation.
500 - Bugfix for negated port numbers.
501 - Removed "<-" rule direction since not even snort supports this.
502 - Fixed snort rule updates from snort.org.
504 fwsnort-0.5 (12/21/2003):
505 - Added "-j REJECT --reject-with tcp-reset" for tcp sessions
506 if the --ipt-block option is specified.
507 - Added ability to download latest snort rules from snort.org.
508 - Added --no-ipt-jumps.
509 - Added better checking for iptables build characteristics such
510 as the LOG target and wether or not the ipv4options extension
512 - Added config preservation code from psad in install.pl.