From 4c63d6f50a3db3f83529b098397b8f26b32c9801 Mon Sep 17 00:00:00 2001 From: robiscool Date: Tue, 3 Jul 2012 12:00:57 -0700 Subject: snort-dev, fix vpn netlist issue with spaces, fix detail preg match on input errors on snort-dev/snort_interfaces_whitelist_edit.php --- config/snort-dev/snort.inc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'config/snort-dev/snort.inc') diff --git a/config/snort-dev/snort.inc b/config/snort-dev/snort.inc index 3fa63caf..04f0d72e 100644 --- a/config/snort-dev/snort.inc +++ b/config/snort-dev/snort.inc @@ -276,8 +276,14 @@ function build_base_whitelist($build_netlist, $wanip, $wangw, $wandns, $vips, $v $snort_vpns_list = function() use(&$home_net, &$config) { $vpns_list = filter_get_vpns_list(); - if (!empty($vpns_list)) - $home_net .= "{$vpns_list},"; + if (!empty($vpns_list)) { + // convert spaces to , returns + $vpns_list = str_replace(' ', ",", $vpns_list); + $vpns_list = str_replace(' ', ",", $vpns_list); + + $home_net .= "{$vpns_list},"; + } + }; if ($vpns == 'yes') { @@ -1072,7 +1078,7 @@ function create_snort_whitelist($id, $if_real) { $whitelist = $config['installedpackages']['snortglobal']['whitelist']['item'][$whitelist_key_w]; $w_data = build_base_whitelist($whitelist['snortlisttype'], $whitelist['wanips'], $whitelist['wangateips'], $whitelist['wandnsips'], $whitelist['vips'], $whitelist['vpnips'], $whitelist_key_w); - // this foe whitelistfile, convert spaces to carriage returns + // convert spaces to carriage returns $w_data = str_replace(',', "\n", $w_data); $w_data = str_replace(',,', "\n", $w_data); -- cgit v1.2.3