diff options
author | bmeeks8 <bmeeks8@bellsouth.net> | 2014-12-15 11:20:31 -0500 |
---|---|---|
committer | bmeeks8 <bmeeks8@bellsouth.net> | 2014-12-15 11:20:31 -0500 |
commit | fa3c2e96911bef223f62ecb0f450495b677dab4f (patch) | |
tree | f72c6339215470388ed77c31df287d9533ff110d /config/snort/snort_interface_logs.php | |
parent | 0e931059d5cf44828b0b1dd29a9102618d0ce2a1 (diff) | |
download | pfsense-packages-fa3c2e96911bef223f62ecb0f450495b677dab4f.tar.gz pfsense-packages-fa3c2e96911bef223f62ecb0f450495b677dab4f.tar.bz2 pfsense-packages-fa3c2e96911bef223f62ecb0f450495b677dab4f.zip |
Update Snort package to 2.9.7.0 pkg v3.2
Diffstat (limited to 'config/snort/snort_interface_logs.php')
-rw-r--r-- | config/snort/snort_interface_logs.php | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/config/snort/snort_interface_logs.php b/config/snort/snort_interface_logs.php index ba8215ca..c8c4c24c 100644 --- a/config/snort/snort_interface_logs.php +++ b/config/snort/snort_interface_logs.php @@ -54,15 +54,29 @@ $if_real = get_real_interface($a_instance[$id]['interface']); // Construct a pointer to the instance's logging subdirectory $snortlogdir = SNORTLOGDIR . "/snort_{$if_real}{$snort_uuid}/"; +// Construct a pointer to the PBI_BIN directory +$snortbindir = SNORT_PBI_BINDIR; + // Limit all file access to just the currently selected interface's logging subdirectory $logfile = htmlspecialchars($snortlogdir . basename($_POST['file'])); if ($_POST['action'] == 'load') { + // If viewing the app-stats log, then grab only the most recent one + if (strpos(basename($logfile), "app-stats.log") !== FALSE) { + $appid_statlogs = glob("{$snortlogdir}app-stats.log.*"); + $logfile = array_pop($appid_statlogs); + } + if(!is_file($logfile)) { echo "|3|" . gettext("Log file does not exist or that logging feature is not enabled") . ".|"; } else { - $data = file_get_contents($logfile); + // Test for special unified2 format app-stats file because + // we have to use a Snort binary tool to display its contents. + if (strpos(basename($_POST['file']), "app-stats.log") !== FALSE) + $data = shell_exec("{$snortbindir}u2openappid {$logfile} 2>&1"); + else + $data = file_get_contents($logfile); if($data === false) { echo "|1|" . gettext("Failed to read log file") . ".|"; } else { @@ -178,7 +192,7 @@ if ($input_errors) { <td width="78%" class="vtable"> <select name="logFile" id="logFile" class="formselect" onChange="loadFile();"> <?php - $logs = array( "alert", "{$if_real}.stats" , "sid_changes.log" ); + $logs = array( "alert", "app-stats.log", "{$if_real}.stats" , "sid_changes.log" ); foreach ($logs as $log) { $selected = ""; if ($log == basename($logfile)) |