diff options
author | robiscool <robrob2626@yahoo.com> | 2009-12-13 16:03:01 -0800 |
---|---|---|
committer | robiscool <robrob2626@yahoo.com> | 2009-12-13 16:03:51 -0800 |
commit | c42ee531a6fadfcce93d83099ca2cd8611a0898f (patch) | |
tree | a5cdcb54eaf241950a58c1b4056cfb411056deed /config/snort-dev/snort_blocked.php | |
parent | 6addd16429792aea3f077c8c7a4d37c11208a4e2 (diff) | |
download | pfsense-packages-c42ee531a6fadfcce93d83099ca2cd8611a0898f.tar.gz pfsense-packages-c42ee531a6fadfcce93d83099ca2cd8611a0898f.tar.bz2 pfsense-packages-c42ee531a6fadfcce93d83099ca2cd8611a0898f.zip |
snort-dev, add deinstall code
Diffstat (limited to 'config/snort-dev/snort_blocked.php')
-rw-r--r-- | config/snort-dev/snort_blocked.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/config/snort-dev/snort_blocked.php b/config/snort-dev/snort_blocked.php index ac751d2a..f4de6e0d 100644 --- a/config/snort-dev/snort_blocked.php +++ b/config/snort-dev/snort_blocked.php @@ -82,8 +82,9 @@ include("head.inc"); <?php $associatealertip = $config['installedpackages']['snort']['config'][0]['associatealertip']; - $ips = `/sbin/pfctl -t snort2c -T show`; - $ips_array = split("\n", $ips); + // $ips = `/sbin/pfctl -t snort2c -T show`; + $ips_array = file('/usr/rob/test.log'); + // $ips_array = split("\n", $ips); $counter = 0; foreach($ips_array as $ip) { if(!$ip) @@ -124,6 +125,7 @@ include("head.inc"); <?php +/* tell the user what settings they have */ $blockedtab_msg_chk = $config['installedpackages']['snort']['config'][0]['rm_blocked']; if ($blockedtab_msg_chk == "1h_b") { $blocked_msg = "hour"; |