aboutsummaryrefslogtreecommitdiffstats
path: root/config/suricata/suricata_rules.php
diff options
context:
space:
mode:
authorbmeeks8 <bmeeks8@bellsouth.net>2014-09-03 11:17:55 -0400
committerbmeeks8 <bmeeks8@bellsouth.net>2014-09-03 11:17:55 -0400
commit2c4435fa4db6a4d24d7faf0b4cdbd7cde8d73089 (patch)
tree1ec27815d6b6f9844844005e03bf565ca13630d2 /config/suricata/suricata_rules.php
parentb9dd2b74d87b1664360bd467b37baf604c53de30 (diff)
downloadpfsense-packages-2c4435fa4db6a4d24d7faf0b4cdbd7cde8d73089.tar.gz
pfsense-packages-2c4435fa4db6a4d24d7faf0b4cdbd7cde8d73089.tar.bz2
pfsense-packages-2c4435fa4db6a4d24d7faf0b4cdbd7cde8d73089.zip
Strip any CR characters that may get pasted into some control fields.
Diffstat (limited to 'config/suricata/suricata_rules.php')
-rw-r--r--config/suricata/suricata_rules.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/suricata/suricata_rules.php b/config/suricata/suricata_rules.php
index f9d8fe07..aa420371 100644
--- a/config/suricata/suricata_rules.php
+++ b/config/suricata/suricata_rules.php
@@ -383,7 +383,7 @@ elseif ($_POST['cancel']) {
elseif ($_POST['save']) {
$pconfig['customrules'] = $_POST['customrules'];
if ($_POST['customrules'])
- $a_rule[$id]['customrules'] = base64_encode($_POST['customrules']);
+ $a_rule[$id]['customrules'] = base64_encode(str_replace("\r\n", "\n", $_POST['customrules']));
else
unset($a_rule[$id]['customrules']);
write_config("Suricata pkg: save modified custom rules for {$a_rule[$id]['interface']}.");