aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-09-26 21:25:19 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-09-26 21:25:19 +0000
commit224193151d68021081506321661278c56f5baa14 (patch)
tree20ad81ae97ff8cced1430f5bf088d08d37adc8c0 /packages
parent3691d2b4cc5d9f2635c80de0b7be377164517e1c (diff)
downloadpfsense-packages-224193151d68021081506321661278c56f5baa14.tar.gz
pfsense-packages-224193151d68021081506321661278c56f5baa14.tar.bz2
pfsense-packages-224193151d68021081506321661278c56f5baa14.zip
Add new tab, snort blocked which lists all ips in the snort2c anchor and allows for the items to be deleted.
Diffstat (limited to 'packages')
-rw-r--r--packages/snort/snort.xml9
-rw-r--r--packages/snort/snort_blocked.php108
-rw-r--r--packages/snort/snort_download_rules.php1
-rw-r--r--packages/snort/snort_rulesets.php1
4 files changed, 119 insertions, 0 deletions
diff --git a/packages/snort/snort.xml b/packages/snort/snort.xml
index 33090913..2bd23a39 100644
--- a/packages/snort/snort.xml
+++ b/packages/snort/snort.xml
@@ -29,6 +29,11 @@
<chmod>077</chmod>
<item>http://www.pfsense.com/packages/config/snort/snort_rulesets.php</item>
</additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/www/</prefix>
+ <chmod>077</chmod>
+ <item>http://www.pfsense.com/packages/config/snort/snort_blocked.php</item>
+ </additional_files_needed>
<service>
<name>snort</name>
<rcfile>snort.sh</rcfile>
@@ -49,6 +54,10 @@
<text>Snort Rulesets</text>
<url>/snort_rulesets.php</url>
</tab>
+ <tab>
+ <text>Snort Blocked</text>
+ <url>/snort_blocked.php</url>
+ </tab>
</tabs>
<fields>
<field>
diff --git a/packages/snort/snort_blocked.php b/packages/snort/snort_blocked.php
new file mode 100644
index 00000000..28a7c202
--- /dev/null
+++ b/packages/snort/snort_blocked.php
@@ -0,0 +1,108 @@
+<?php
+/* $Id$ */
+/*
+ snort_blocked.php
+ Copyright (C) 2006 Scott Ullrich
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require("guiconfig.inc");
+require("/usr/local/pkg/snort.inc");
+
+if($_POST['todelete'] or $_GET['todelete']) {
+ if($_POST['todelete'])
+ $ip = $_POST['todelete'];
+ if($_GET['todelete'])
+ $ip = $_GET['todelete'];
+ exec("pfctl -t snort2c -T delete {$ip}");
+}
+
+$pgtitle = "Snort: Snort Rulesets";
+include("head.inc");
+
+?>
+
+<body link="#000000" vlink="#000000" alink="#000000">
+<?php include("fbegin.inc"); ?>
+
+<p class="pgtitle"><?=$pgtitle?></font></p>
+
+<form action="snort_rulesets.php" method="post" name="iform" id="iform">
+<script src="/row_toggle.js" type="text/javascript"></script>
+<script src="/javascript/sorttable.js" type="text/javascript"></script>
+<?php if ($savemsg) print_info_box($savemsg); ?>
+<table width="99%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td>
+<?php
+ $tab_array = array();
+ $tab_array[0] = array(gettext("Snort Settings"), false, "/pkg_edit.php?xml=snort.xml&id=0");
+ $tab_array[1] = array(gettext("Snort Rules Update"), false, "/snort_download_rules.php");
+ $tab_array[2] = array(gettext("Snort Rulesets"), false, "/snort_rulesets.php");
+ $tab_array[2] = array(gettext("Snort Blocked"), true, "/snort_blocked.php");
+ display_top_tabs($tab_array);
+?>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <div id="mainarea">
+ <table id="maintable" class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td>
+ <table id="sortabletable1" class="sortable" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr id="frheader">
+ <td width="5%" class="listhdrr">Remove</td>
+ <td class="listhdrr">IP</td>
+ </tr>
+<?php
+
+ $ips = `/sbin/pfctl -t snort2c -T show`;
+ $ips_array = split("\n", $ips);
+ foreach($ips_array as $ip) {
+ if(!$ip)
+ continue;
+ echo "<tr>";
+ echo "<td align=\"center\" valign=\"top\"'><a href='snort_blocked.php?todelete=" . urlencode($ip) . "'>'";
+ echo "<img title=\"Delete\" border=\"0\" name='todelete' id='todelete' alt=\"Delete\" src=\"./themes/{$g['theme']}/images/icons/icon_x.gif\"></a></td>";
+ echo "<td>{$ip}</td>";
+ echo "</tr>";
+ }
+
+?>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
+</table>
+
+</form>
+
+<?php include("fend.inc"); ?>
+
+</body>
+</html>
diff --git a/packages/snort/snort_download_rules.php b/packages/snort/snort_download_rules.php
index d112cafe..554e1d6e 100644
--- a/packages/snort/snort_download_rules.php
+++ b/packages/snort/snort_download_rules.php
@@ -61,6 +61,7 @@ include("head.inc");
$tab_array[0] = array(gettext("Snort Settings"), false, "/pkg_edit.php?xml=snort.xml&id=0");
$tab_array[1] = array(gettext("Snort Rules Update"), true, "/snort_download_rules.php");
$tab_array[2] = array(gettext("Snort Rulesets"), false, "/snort_rulesets.php");
+ $tab_array[2] = array(gettext("Snort Blocked"), false, "/snort_blocked.php");
display_top_tabs($tab_array);
?>
</td>
diff --git a/packages/snort/snort_rulesets.php b/packages/snort/snort_rulesets.php
index 46bc083f..4a35f7a0 100644
--- a/packages/snort/snort_rulesets.php
+++ b/packages/snort/snort_rulesets.php
@@ -71,6 +71,7 @@ include("head.inc");
$tab_array[0] = array(gettext("Snort Settings"), false, "/pkg_edit.php?xml=snort.xml&id=0");
$tab_array[1] = array(gettext("Snort Rules Update"), false, "/snort_download_rules.php");
$tab_array[2] = array(gettext("Snort Rulesets"), true, "/snort_rulesets.php");
+ $tab_array[2] = array(gettext("Snort Blocked"), false, "/snort_blocked.php");
display_top_tabs($tab_array);
?>
</td>