aboutsummaryrefslogtreecommitdiffstats
path: root/config/snort/snort_alerts.php
diff options
context:
space:
mode:
Diffstat (limited to 'config/snort/snort_alerts.php')
-rw-r--r--config/snort/snort_alerts.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/config/snort/snort_alerts.php b/config/snort/snort_alerts.php
index e5e85237..8e81d16a 100644
--- a/config/snort/snort_alerts.php
+++ b/config/snort/snort_alerts.php
@@ -89,12 +89,12 @@ if ($_POST['delete'])
conf_mount_rw();
if(file_exists('/var/log/snort/alert'))
{
- exec('/bin/echo "" > /var/log/snort/alert');
+ @file_put_content("/var/log/snort/alert", "");
post_delete_logs();
- exec('/usr/sbin/chown snort:snort /var/log/snort/*');
- exec('/bin/chmod 660 /var/log/snort/*');
+ mwexec('/usr/sbin/chown snort:snort /var/log/snort/*', true);
+ mwexec('/bin/chmod 660 /var/log/snort/*', true);
sleep(2);
- exec('/usr/bin/killall -HUP snort');
+ mwexec('/usr/bin/killall -HUP snort', true);
}
conf_mount_ro();
}