Run IPsec logs through htmlspecialchars before display.

This commit is contained in:
jim-p 2013-01-21 09:33:25 -05:00
parent 633c02c1ac
commit 25dc1bb059

View File

@ -125,6 +125,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;