Project

General

Profile

Download (6.24 KB) Statistics
| Branch: | Tag: | Revision:
1 7afae53f Scott Ullrich
<?php
2
/*
3 c07b05e0 Scott Ullrich
	diag_tables.php
4 7afae53f Scott Ullrich
*/
5 fd9ebcd5 Stephen Beaver
/* ====================================================================
6 0da0d43e Phil Davis
 *  Copyright (c)  2004-2015  Electric Sheep Fencing, LLC. All rights reserved.
7 fd9ebcd5 Stephen Beaver
 *	Portions borrowed from diag_dump_states.php
8
 *
9 0da0d43e Phil Davis
 *  Redistribution and use in source and binary forms, with or without modification,
10
 *  are permitted provided that the following conditions are met:
11 fd9ebcd5 Stephen Beaver
 *
12
 *  1. Redistributions of source code must retain the above copyright notice,
13
 *      this list of conditions and the following disclaimer.
14
 *
15
 *  2. Redistributions in binary form must reproduce the above copyright
16
 *      notice, this list of conditions and the following disclaimer in
17
 *      the documentation and/or other materials provided with the
18 0da0d43e Phil Davis
 *      distribution.
19 fd9ebcd5 Stephen Beaver
 *
20 0da0d43e Phil Davis
 *  3. All advertising materials mentioning features or use of this software
21 fd9ebcd5 Stephen Beaver
 *      must display the following acknowledgment:
22
 *      "This product includes software developed by the pfSense Project
23 0da0d43e Phil Davis
 *       for use in the pfSense software distribution. (http://www.pfsense.org/).
24 fd9ebcd5 Stephen Beaver
 *
25
 *  4. The names "pfSense" and "pfSense Project" must not be used to
26
 *       endorse or promote products derived from this software without
27
 *       prior written permission. For written permission, please contact
28
 *       coreteam@pfsense.org.
29
 *
30
 *  5. Products derived from this software may not be called "pfSense"
31
 *      nor may "pfSense" appear in their names without prior written
32
 *      permission of the Electric Sheep Fencing, LLC.
33
 *
34
 *  6. Redistributions of any form whatsoever must retain the following
35
 *      acknowledgment:
36
 *
37
 *  "This product includes software developed by the pfSense Project
38
 *  for use in the pfSense software distribution (http://www.pfsense.org/).
39 0da0d43e Phil Davis
 *
40 fd9ebcd5 Stephen Beaver
 *  THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
41
 *  EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
 *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43
 *  PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
44
 *  ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
 *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46
 *  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47
 *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 *  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49
 *  STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50
 *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51
 *  OF THE POSSIBILITY OF SUCH DAMAGE.
52
 *
53
 *  ====================================================================
54
 *
55
 */
56 7afae53f Scott Ullrich
57
##|+PRIV
58 c07b05e0 Scott Ullrich
##|*IDENT=page-diagnostics-tables
59 9599211d jim-p
##|*NAME=Diagnostics: pf Table IP addresses
60 c07b05e0 Scott Ullrich
##|*DESCR=Allow access to the 'Diagnostics: Tables' page.
61
##|*MATCH=diag_tables.php*
62 7afae53f Scott Ullrich
##|-PRIV
63
64 c07b05e0 Scott Ullrich
$pgtitle = array(gettext("Diagnostics"), gettext("Tables"));
65 d71fc5d3 jim-p
$shortcut_section = "aliases";
66 7afae53f Scott Ullrich
67
require_once("guiconfig.inc");
68
69
// Set default table
70
$tablename = "sshlockout";
71 3a652703 sbeaver
$bogons = false;
72 e166769c Renato Botelho
73 5f601060 Phil Davis
if ($_REQUEST['type']) {
74 34525fef Ermal
	$tablename = $_REQUEST['type'];
75 5f601060 Phil Davis
}
76 e166769c Renato Botelho
77 5f601060 Phil Davis
if ($_REQUEST['delete']) {
78
	if (is_ipaddr($_REQUEST['delete']) || is_subnet($_REQUEST['delete'])) {
79 7afae53f Scott Ullrich
		exec("/sbin/pfctl -t " . escapeshellarg($_REQUEST['type']) . " -T delete " . escapeshellarg($_REQUEST['delete']), $delete);
80
		echo htmlentities($_REQUEST['delete']);
81
	}
82 e166769c Renato Botelho
	exit;
83 7afae53f Scott Ullrich
}
84
85 288a2a0f Phil Davis
if ($_POST['deleteall']) {
86 e26e0eac jim-p
	exec("/sbin/pfctl -t " . escapeshellarg($tablename) . " -T show", $entries);
87 5f601060 Phil Davis
	if (is_array($entries)) {
88
		foreach ($entries as $entryA) {
89 7afae53f Scott Ullrich
			$entry = trim($entryA);
90
			exec("/sbin/pfctl -t " . escapeshellarg($tablename) . " -T delete " . escapeshellarg($entry), $delete);
91
		}
92
	}
93
}
94
95 288a2a0f Phil Davis
if (($tablename == "bogons") || ($tablename == "bogonsv6")) {
96 3a652703 sbeaver
	$bogons = true;
97
98 288a2a0f Phil Davis
	if ($_POST['Download']) {
99 3a652703 sbeaver
		mwexec_bg("/etc/rc.update_bogons.sh now");
100
		$maxtimetowait = 0;
101
		$loading = true;
102 288a2a0f Phil Davis
		while ($loading == true) {
103 3a652703 sbeaver
			$isrunning = `/bin/ps awwwux | /usr/bin/grep -v grep | /usr/bin/grep bogons`;
104 947141fd Phil Davis
			if ($isrunning == "") {
105 3a652703 sbeaver
				$loading = false;
106 947141fd Phil Davis
			}
107 3a652703 sbeaver
			$maxtimetowait++;
108 947141fd Phil Davis
			if ($maxtimetowait > 89) {
109 3a652703 sbeaver
				$loading = false;
110 947141fd Phil Davis
			}
111 3a652703 sbeaver
			sleep(1);
112
		}
113 947141fd Phil Davis
		if ($maxtimetowait < 90) {
114 3a652703 sbeaver
			$savemsg = gettext("The bogons database has been updated.");
115 947141fd Phil Davis
		}
116 6c474eb8 Warren Baker
	}
117
}
118
119 e26e0eac jim-p
exec("/sbin/pfctl -t " . escapeshellarg($tablename) . " -T show", $entries);
120 34525fef Ermal
exec("/sbin/pfctl -sT", $tables);
121 7afae53f Scott Ullrich
122
include("head.inc");
123 c054d8bc sbeaver
124 947141fd Phil Davis
if ($savemsg) {
125 c054d8bc sbeaver
	print_info_box($savemsg);
126 947141fd Phil Davis
}
127 ad9e2a90 sbeaver
128 7ac86a5f Colin Fleming
$form = new Form('Show');
129 3a652703 sbeaver
130 ad9e2a90 sbeaver
$section = new Form_Section('Table to display');
131
132
$section->addInput(new Form_Select(
133
	'type',
134
	'Table',
135
	$tablename,
136
	array_combine($tables, $tables)
137
));
138
139
$form->add($section);
140
print $form;
141 7afae53f Scott Ullrich
?>
142
143 8fd9052f Colin Fleming
<script type="text/javascript">
144
//<![CDATA[
145 947141fd Phil Davis
events.push(function() {
146
	$('a[data-entry]').on('click', function() {
147 eb500b85 Sjon Hortensius
		var el = $(this);
148
149
		$.ajax(
150
			'/diag_tables.php',
151
			{
152
				type: 'post',
153
				data: {
154
					type: '<?=htmlspecialchars($tablename)?>',
155
					delete: $(this).data('entry')
156
				},
157 947141fd Phil Davis
				success: function() {
158 eb500b85 Sjon Hortensius
					el.parents('tr').remove();
159
				},
160 7afae53f Scott Ullrich
		});
161 eb500b85 Sjon Hortensius
	});
162
});
163 8fd9052f Colin Fleming
//]]>
164 7afae53f Scott Ullrich
</script>
165 e166769c Renato Botelho
166 ad9e2a90 sbeaver
<div class="table-responsive">
167 3a652703 sbeaver
	<table class="table table-striped table-hover table-condensed">
168 ad9e2a90 sbeaver
		<thead>
169 eb500b85 Sjon Hortensius
			<tr>
170
				<th><?=gettext("IP Address")?></th>
171 63ff711e Colin Fleming
				<th></th>
172 eb500b85 Sjon Hortensius
			</tr>
173 ad9e2a90 sbeaver
		</thead>
174 3a652703 sbeaver
		<tbody>
175 7afae53f Scott Ullrich
<?php
176 eb500b85 Sjon Hortensius
		foreach ($entries as $entry):
177
			$entry = trim($entry);
178 7afae53f Scott Ullrich
?>
179 eb500b85 Sjon Hortensius
			<tr>
180 ad9e2a90 sbeaver
				<td>
181 eb500b85 Sjon Hortensius
					<?=$entry?>
182 ad9e2a90 sbeaver
				</td>
183
				<td>
184 eb500b85 Sjon Hortensius
					<?php if (!$bogons): ?>
185
						<a class="btn btn-xs btn-default" data-entry="<?=htmlspecialchars($entry)?>">Remove</a>
186
					<?php endif ?>
187 ad9e2a90 sbeaver
				</td>
188
			</tr>
189 eb500b85 Sjon Hortensius
<?php endforeach ?>
190 ad9e2a90 sbeaver
		</tbody>
191
	</table>
192 c054d8bc sbeaver
</div>
193 eb500b85 Sjon Hortensius
<?php if (empty($entries)): ?>
194
	<div class="alert alert-warning" role="alert">No entries exist in this table</div>
195
<?php endif ?>
196
197 3a652703 sbeaver
<?php
198
199 eb500b85 Sjon Hortensius
if ($bogons || !empty($entries)) {
200
	$form = new Form;
201 3a652703 sbeaver
202 eb500b85 Sjon Hortensius
	$section = new Form_Section('Table Data');
203 3a652703 sbeaver
204 eb500b85 Sjon Hortensius
	if ($bogons) {
205 3a652703 sbeaver
		$last_updated = exec('/usr/bin/grep -i -m 1 -E "^# last updated" /etc/' . escapeshellarg($tablename) . '|cut -d"(" -f2|tr -d ")" ');
206
207 eb500b85 Sjon Hortensius
		$section->addInput(new Form_StaticText(
208 3a652703 sbeaver
			'Last update',
209
			$last_updated
210
		));
211
212 eb500b85 Sjon Hortensius
		$section->addInput(new Form_Button(
213 3a652703 sbeaver
			'Download',
214
			'Download'
215 eb500b85 Sjon Hortensius
		))->setHelp('Download the latest bogon data')->addClass('btn-warning');
216
	} elseif (!empty($entries)) {
217
		$section->addInput(new Form_Button(
218 3a652703 sbeaver
			'deleteall',
219
			'Clear Table'
220 eb500b85 Sjon Hortensius
		))->setHelp('Clear all of the entries in this table')->addClass('btn-danger');
221 3a652703 sbeaver
	}
222
223 eb500b85 Sjon Hortensius
	$form->add($section);
224
	print $form;
225 3a652703 sbeaver
}
226 909e7d0d N0YB
227 7ac86a5f Colin Fleming
include("foot.inc");