Changeset 489
- Timestamp:
- 05/16/09 11:07:10 (16 months ago)
- Location:
- fwsnort/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
fwsnort/trunk/ChangeLog
r485 r489 8 8 the content can be limited. If the content (null terminated string) is 9 9 more than MAX_STRING_LEN chars, fwsnort throws the rule away. 10 - Bug fix to allow fwsnort to properly translate snort rules that have 11 "content" fields with embedded escaped semicolons (e.g. "\;"). This 12 allows fwsnort to translate about 85 additional rules from the Emerging 13 Threats rule set. 10 14 - Updated to the latest complete rule set from Emerging Threats (see 11 15 http://www.emergingthreats.net/). -
fwsnort/trunk/fwsnort
r486 r489 936 936 } 937 937 938 while ($rule_options =~ /(\w+):\s*(.*? )\s*;/g) {938 while ($rule_options =~ /(\w+):\s*(.*?[^\x5c]);/g) { 939 939 my $opt = $1; 940 940 my $val = $2;
