Actions
Bug #4512
closedsnort ruleset selection page issue
Status:
Resolved
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
03/11/2015
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Affected Version:
Affected Plus Version:
Affected Architecture:
Description
Snort ver 2.9.7.0 pkg v3.2.3
Typo in snort_rulesets.php
Around line 534, when determining how many rows to display.
$i = count($emergingrules);
if ($i < count($snortsorules))
$i = count(snortsorules);
^
missing $
if ($i < count($snortrules))
$i = count($snortrules);
Effect: Number of snort so rules always incorrectly count as 1. There will be cases where not all snort so rules are displayed, as $i is set by the other two rules.
Updated by Bill Meeks over 9 years ago
Thanks for the report. I will put the fix in the next Snort package update.
Bill
Updated by Bill Meeks over 9 years ago
The latest 2.9.7.2 pkg v3.2.4 release of the Snort package corrects this bug. This issue can be closed.
Actions