Fixed detection of snort description if there is no CRLF and the

rules are misbuild. This fixes bug #0000669
This commit is contained in:
Christian Schmidt
2010-06-25 18:37:00 +02:00
parent 584efcab4f
commit 6119650652

View File

@@ -143,7 +143,7 @@ if (-e "/etc/snort/snort.conf") {
# If see more than one dashed line, (start to) create rule file description
if ($dashlinecnt > 1) {
# Check for a line starting with a #
if ($ruleline =~ /^\#/) {
if ($ruleline =~ /^\#/ and $ruleline !~ /^\#alert/) {
# Create tempruleline
my $tempruleline = $ruleline;