Run IPsec logs through htmlspecialchars before display.

This commit is contained in:
jim-p 2013-01-21 09:33:25 -05:00
parent ec970b5004
commit 7ee7ed4617

View File

@ -124,6 +124,7 @@ include("head.inc");
</tr>
<?php
foreach($ipsec_logarr as $logent){
$logent = htmlspecialchars($logent);
foreach($search as $string) {
if(preg_match($string, $logent))
$match = true;