1 |
ab6a5cfc
|
Scott Ullrich
|
<?php
|
2 |
|
|
/*
|
3 |
|
|
|
4 |
|
|
Redistribution and use in source and binary forms, with or without
|
5 |
|
|
modification, are permitted provided that the following conditions are met:
|
6 |
|
|
|
7 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
8 |
|
|
this list of conditions and the following disclaimer.
|
9 |
|
|
|
10 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
11 |
|
|
notice, this list of conditions and the following disclaimer in the
|
12 |
|
|
documentation and/or other materials provided with the distribution.
|
13 |
|
|
|
14 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
15 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
16 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
17 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
18 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
19 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
20 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
21 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
22 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
23 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
24 |
|
|
*/
|
25 |
|
|
|
26 |
13d193c2
|
Scott Ullrich
|
/*
|
27 |
|
|
pfSense_BUILDER_BINARIES: /bin/ps /usr/bin/grep /usr/sbin/tcpdump
|
28 |
|
|
pfSense_MODULE: routing
|
29 |
|
|
*/
|
30 |
|
|
|
31 |
6b07c15a
|
Matthew Grooms
|
##|+PRIV
|
32 |
|
|
##|*IDENT=page-diagnostics-packetcapture
|
33 |
|
|
##|*NAME=Diagnostics: Packet Capture page
|
34 |
|
|
##|*DESCR=Allow access to the 'Diagnostics: Packet Capture' page.
|
35 |
|
|
##|*MATCH=diag_packet_capture.php*
|
36 |
|
|
##|-PRIV
|
37 |
|
|
|
38 |
1c550bed
|
Renato Botelho
|
$pgtitle = array(gettext("Diagnostics"), gettext("Packet Capture"));
|
39 |
d7cd7129
|
Scott Ullrich
|
require_once("guiconfig.inc");
|
40 |
|
|
require_once("pfsense-utils.inc");
|
41 |
ab6a5cfc
|
Scott Ullrich
|
|
42 |
4e7d1665
|
Scott Ullrich
|
$fp = "/root/";
|
43 |
ab6a5cfc
|
Scott Ullrich
|
$fn = "packetcapture.cap";
|
44 |
68ed7d9d
|
Chris Buechler
|
$snaplen = 0;//default packet length
|
45 |
ab6a5cfc
|
Scott Ullrich
|
$count = 100;//default number of packets to capture
|
46 |
|
|
|
47 |
|
|
if ($_POST) {
|
48 |
|
|
$do_tcpdump = true;
|
49 |
|
|
$host = $_POST['host'];
|
50 |
|
|
$selectedif = $_POST['interface'];
|
51 |
|
|
$count = $_POST['count'];
|
52 |
|
|
$packetlength = $_POST['snaplen'];
|
53 |
|
|
$port = $_POST['port'];
|
54 |
|
|
$detail = $_POST['detail'];
|
55 |
4e7d1665
|
Scott Ullrich
|
|
56 |
|
|
conf_mount_rw();
|
57 |
ab6a5cfc
|
Scott Ullrich
|
|
58 |
b39ca83c
|
Scott Ullrich
|
if ($_POST['dnsquery']) {
|
59 |
|
|
//if dns lookup is checked
|
60 |
ab6a5cfc
|
Scott Ullrich
|
$disabledns = "";
|
61 |
b39ca83c
|
Scott Ullrich
|
} else {
|
62 |
|
|
//if dns lookup is unchecked
|
63 |
ab6a5cfc
|
Scott Ullrich
|
$disabledns = "-n";
|
64 |
|
|
}
|
65 |
|
|
|
66 |
b39ca83c
|
Scott Ullrich
|
if ($_POST['startbtn'] != "" ) {
|
67 |
1c550bed
|
Renato Botelho
|
$action = gettext("Start");
|
68 |
232d6540
|
Scott Dale
|
|
69 |
|
|
//delete previous packet capture if it exists
|
70 |
|
|
if (file_exists($fp.$fn))
|
71 |
|
|
unlink ($fp.$fn);
|
72 |
ab6a5cfc
|
Scott Ullrich
|
|
73 |
b39ca83c
|
Scott Ullrich
|
} elseif ($_POST['stopbtn']!= "") {
|
74 |
1c550bed
|
Renato Botelho
|
$action = gettext("Stop");
|
75 |
98dee353
|
pierrepomes
|
$processes_running = trim(shell_exec('/bin/ps axw -O pid= | /usr/bin/grep tcpdump | /usr/bin/grep '.$fn.' | /usr/bin/grep -v pflog'));
|
76 |
d5c2fde5
|
Scott Ullrich
|
|
77 |
|
|
//explode processes into an array, (delimiter is new line)
|
78 |
|
|
$processes_running_array = explode("\n", $processes_running);
|
79 |
|
|
|
80 |
|
|
//kill each of the packetcapture processes
|
81 |
b39ca83c
|
Scott Ullrich
|
foreach ($processes_running_array as $process) {
|
82 |
d5c2fde5
|
Scott Ullrich
|
$process_id_pos = strpos($process, ' ');
|
83 |
|
|
$process_id = substr($process, 0, $process_id_pos);
|
84 |
|
|
exec("kill $process_id");
|
85 |
|
|
}
|
86 |
|
|
|
87 |
b39ca83c
|
Scott Ullrich
|
} else {
|
88 |
|
|
//download file
|
89 |
93c86d2b
|
Scott Dale
|
$fs = filesize($fp.$fn);
|
90 |
ab6a5cfc
|
Scott Ullrich
|
header("Content-Type: application/octet-stream");
|
91 |
9f3259e0
|
Scott Dale
|
header("Content-Disposition: attachment; filename=$fn");
|
92 |
ab6a5cfc
|
Scott Ullrich
|
header("Content-Length: $fs");
|
93 |
|
|
readfile($fp.$fn);
|
94 |
|
|
}
|
95 |
b39ca83c
|
Scott Ullrich
|
} else {
|
96 |
ab6a5cfc
|
Scott Ullrich
|
$do_tcpdump = false;
|
97 |
|
|
}
|
98 |
|
|
include("head.inc"); ?>
|
99 |
b39ca83c
|
Scott Ullrich
|
|
100 |
ab6a5cfc
|
Scott Ullrich
|
<body link="#000000" vlink="#0000CC" alink="#0000CC">
|
101 |
b39ca83c
|
Scott Ullrich
|
|
102 |
|
|
<?php
|
103 |
|
|
include("fbegin.inc");
|
104 |
|
|
?>
|
105 |
ab6a5cfc
|
Scott Ullrich
|
|
106 |
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
107 |
|
|
<tr>
|
108 |
|
|
<td>
|
109 |
|
|
<form action="diag_packet_capture.php" method="post" name="iform" id="iform">
|
110 |
|
|
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
111 |
0cece4a2
|
Scott Ullrich
|
<tr>
|
112 |
1c550bed
|
Renato Botelho
|
<td colspan="2" valign="top" class="listtopic"><?=gettext("Packet capture");?></td>
|
113 |
0cece4a2
|
Scott Ullrich
|
</tr>
|
114 |
ab6a5cfc
|
Scott Ullrich
|
<tr>
|
115 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Interface");?></td>
|
116 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
117 |
dddf4c16
|
Scott Ullrich
|
<select name="interface">
|
118 |
b39ca83c
|
Scott Ullrich
|
<?php
|
119 |
|
|
$interfaces = get_configured_interface_with_descr();
|
120 |
0aba3822
|
jim-p
|
if (isset($config['ipsec']['enable']))
|
121 |
|
|
$interfaces['ipsec'] = "IPsec";
|
122 |
|
|
foreach (array('server', 'client') as $mode) {
|
123 |
|
|
if (is_array($config['openvpn']["openvpn-{$mode}"])) {
|
124 |
|
|
foreach ($config['openvpn']["openvpn-{$mode}"] as $id => $setting) {
|
125 |
|
|
if (!isset($setting['disable'])) {
|
126 |
|
|
$interfaces['ovpn' . substr($mode, 0, 1) . $setting['vpnid']] = gettext("OpenVPN") . " ".$mode.": ".htmlspecialchars($setting['description']);
|
127 |
|
|
}
|
128 |
|
|
}
|
129 |
|
|
}
|
130 |
|
|
}
|
131 |
|
|
foreach ($interfaces as $iface => $ifacename): ?>
|
132 |
68ed7d9d
|
Chris Buechler
|
<option value="<?=$iface;?>" <?php if ($selectedif == $iface) echo "selected"; ?>>
|
133 |
ab6a5cfc
|
Scott Ullrich
|
<?php echo $ifacename;?>
|
134 |
|
|
</option>
|
135 |
|
|
<?php endforeach;?>
|
136 |
|
|
</select>
|
137 |
4a3c31d7
|
Carlos Eduardo Ramos
|
<br/><?=gettext("Select the interface on which to capture traffic.");?>
|
138 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
139 |
|
|
</tr>
|
140 |
|
|
<tr>
|
141 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Host Address");?></td>
|
142 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
143 |
b5c78501
|
Seth Mos
|
<input name="host" type="text" class="formfld host" id="host" size="20" value="<?=htmlspecialchars($host);?>">
|
144 |
1c550bed
|
Renato Botelho
|
<br/><?=gettext("This value is either the Source or Destination IP address. The packet capture will look for this address in either field.");?>
|
145 |
|
|
<br/><?=gettext("This value can be a domain name or IP address.");?>
|
146 |
4a3c31d7
|
Carlos Eduardo Ramos
|
<br/><?=gettext("If you leave this field blank, all packets on the specified interface will be captured.");?>
|
147 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
148 |
|
|
</tr>
|
149 |
|
|
<tr>
|
150 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Port");?></td>
|
151 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
152 |
b5c78501
|
Seth Mos
|
<input name="port" type="text" class="formfld unknown" id="port" size="5" value="<?=$port;?>">
|
153 |
1c550bed
|
Renato Botelho
|
<br/><?=gettext("The port can be either the source or destination port. The packet capture will look for this port in either field.");?>
|
154 |
|
|
<br/><?=gettext("Leave blank if you do not want to filter by port.");?>
|
155 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
156 |
|
|
</tr>
|
157 |
|
|
<tr>
|
158 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Packet Length");?></td>
|
159 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
160 |
b5c78501
|
Seth Mos
|
<input name="snaplen" type="text" class="formfld unknown" id="snaplen" size="5" value="<?=$snaplen;?>">
|
161 |
68ed7d9d
|
Chris Buechler
|
<br/><?=gettext("The Packet length is the number of bytes of each packet that will be captured. Default value is 0, which will capture the entire frame regardless of its size.");?>
|
162 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
163 |
|
|
</tr>
|
164 |
|
|
<tr>
|
165 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Count");?></td>
|
166 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
167 |
b5c78501
|
Seth Mos
|
<input name="count" type="text" class="formfld unknown" id="count" size="5" value="<?=$count;?>">
|
168 |
1c550bed
|
Renato Botelho
|
<br/><?=gettext("This is the number of packets the packet capture will grab. Default value is 100.") . "<br/>" . gettext("Enter 0 (zero) for no count limit.");?>
|
169 |
ab6a5cfc
|
Scott Ullrich
|
</tr>
|
170 |
|
|
<tr>
|
171 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Level of Detail");?></td>
|
172 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
173 |
b5c78501
|
Seth Mos
|
<select name="detail" type="text" class="formselect" id="detail" size="1">
|
174 |
1c550bed
|
Renato Botelho
|
<option value="-q" <?php if ($detail == "-q") echo "selected"; ?>><?=gettext("Normal");?></option>
|
175 |
|
|
<option value="-v" <?php if ($detail == "-v") echo "selected"; ?>><?=gettext("Medium");?></option>
|
176 |
|
|
<option value="-vv" <?php if ($detail == "-vv") echo "selected"; ?>><?=gettext("High");?></option>
|
177 |
|
|
<option value="-vv -e" <?php if ($detail == "-vv -e") echo "selected"; ?>><?=gettext("Full");?></option>
|
178 |
ab6a5cfc
|
Scott Ullrich
|
</select>
|
179 |
1c550bed
|
Renato Botelho
|
<br/><?=gettext("This is the level of detail that will be displayed after hitting 'Stop' when the packets have been captured.") . "<br/><b>" .
|
180 |
4a3c31d7
|
Carlos Eduardo Ramos
|
gettext("Note:") . "</b> " .
|
181 |
1c550bed
|
Renato Botelho
|
gettext("This option does not affect the level of detail when downloading the packet capture.");?>
|
182 |
ab6a5cfc
|
Scott Ullrich
|
</tr>
|
183 |
|
|
<tr>
|
184 |
1c550bed
|
Renato Botelho
|
<td width="17%" valign="top" class="vncellreq"><?=gettext("Reverse DNS Lookup");?></td>
|
185 |
ab6a5cfc
|
Scott Ullrich
|
<td width="83%" class="vtable">
|
186 |
|
|
<input name="dnsquery" type="checkbox"<?php if($_POST['dnsquery']) echo " CHECKED"; ?>>
|
187 |
1c550bed
|
Renato Botelho
|
<br/><?=gettext("This check box will cause the packet capture to perform a reverse DNS lookup associated with all IP addresses.");?>
|
188 |
|
|
<br/><b><?=gettext("Note");?>: </b><?=gettext("This option can cause delays for large packet captures.");?>
|
189 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
190 |
|
|
</tr>
|
191 |
|
|
<tr>
|
192 |
|
|
<td width="17%" valign="top"> </td>
|
193 |
|
|
<td width="83%">
|
194 |
b39ca83c
|
Scott Ullrich
|
<?php
|
195 |
d5c2fde5
|
Scott Ullrich
|
|
196 |
b39ca83c
|
Scott Ullrich
|
/* check to see if packet capture tcpdump is already running */
|
197 |
00c89b35
|
Chris Buechler
|
$processcheck = (trim(shell_exec('/bin/ps axw -O pid= | /usr/bin/grep tcpdump | /usr/bin/grep $fn | /usr/bin/grep -v pflog')));
|
198 |
9b1b06b5
|
Scott Dale
|
|
199 |
|
|
$processisrunning = false;
|
200 |
d5c2fde5
|
Scott Ullrich
|
|
201 |
9b1b06b5
|
Scott Dale
|
if ($processcheck != false)
|
202 |
|
|
$processisrunning = true;
|
203 |
|
|
|
204 |
0cd8ee5c
|
Erik Fonnesbeck
|
if (($action == gettext("Stop") or $action == "") and $processisrunning != true)
|
205 |
1c550bed
|
Renato Botelho
|
echo "<input type=\"submit\" name=\"startbtn\" value=\"" . gettext("Start") . "\"> ";
|
206 |
b39ca83c
|
Scott Ullrich
|
else {
|
207 |
1c550bed
|
Renato Botelho
|
echo "<input type=\"submit\" name=\"stopbtn\" value=\"" . gettext("Stop") . "\"> ";
|
208 |
232d6540
|
Scott Dale
|
}
|
209 |
b39ca83c
|
Scott Ullrich
|
if (file_exists($fp.$fn) and $processisrunning != true) {
|
210 |
1c550bed
|
Renato Botelho
|
echo "<input type=\"submit\" name=\"downloadbtn\" value=\"" . gettext("Download Capture") . "\">";
|
211 |
4a3c31d7
|
Carlos Eduardo Ramos
|
echo " (" . gettext("The packet capture file was last updated:") . " " . date("F jS, Y g:i:s a.", filemtime($fp.$fn)) . ")";
|
212 |
ab6a5cfc
|
Scott Ullrich
|
}
|
213 |
b39ca83c
|
Scott Ullrich
|
?>
|
214 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
215 |
|
|
</tr>
|
216 |
|
|
<tr>
|
217 |
|
|
<td valign="top" colspan="2">
|
218 |
b39ca83c
|
Scott Ullrich
|
<?php
|
219 |
9b1b06b5
|
Scott Dale
|
echo "<font face='terminal' size='2'>";
|
220 |
|
|
if ($processisrunning == true)
|
221 |
1c550bed
|
Renato Botelho
|
echo("<strong>" . gettext("Packet Capture is running.") . "</strong><br/>");
|
222 |
9b1b06b5
|
Scott Dale
|
|
223 |
|
|
if ($do_tcpdump) {
|
224 |
ab6a5cfc
|
Scott Ullrich
|
|
225 |
b39ca83c
|
Scott Ullrich
|
if ($port != "") {
|
226 |
232d6540
|
Scott Dale
|
$searchport = "and port ".$port;
|
227 |
|
|
if($host <> "")
|
228 |
|
|
$searchport = "and port ".$port;
|
229 |
|
|
else
|
230 |
|
|
$searchport = "port ".$port;
|
231 |
b39ca83c
|
Scott Ullrich
|
} else {
|
232 |
232d6540
|
Scott Dale
|
$searchport = "";
|
233 |
|
|
}
|
234 |
|
|
|
235 |
b39ca83c
|
Scott Ullrich
|
if ($host != "") {
|
236 |
bda839a7
|
Scott Dale
|
$searchhost = "host " . $host;
|
237 |
b39ca83c
|
Scott Ullrich
|
} else {
|
238 |
232d6540
|
Scott Dale
|
$searchhost = "";
|
239 |
bda839a7
|
Scott Dale
|
}
|
240 |
b39ca83c
|
Scott Ullrich
|
if ($count != "0" ) {
|
241 |
bda839a7
|
Scott Dale
|
$searchcount = "-c " . $count;
|
242 |
b39ca83c
|
Scott Ullrich
|
} else {
|
243 |
bda839a7
|
Scott Dale
|
$searchcount = "";
|
244 |
|
|
}
|
245 |
ab6a5cfc
|
Scott Ullrich
|
|
246 |
|
|
$selectedif = convert_friendly_interface_to_real_interface_name($selectedif);
|
247 |
b39ca83c
|
Scott Ullrich
|
|
248 |
1c550bed
|
Renato Botelho
|
if ($action == gettext("Start")) {
|
249 |
|
|
echo("<strong>" . gettext("Packet Capture is running.") . "</strong><br/>");
|
250 |
9b1b06b5
|
Scott Dale
|
mwexec_bg ("/usr/sbin/tcpdump -i $selectedif $searchcount -s $packetlength -w $fp$fn $searchhost $searchport");
|
251 |
b39ca83c
|
Scott Ullrich
|
} else {
|
252 |
|
|
//action = stop
|
253 |
4a3c31d7
|
Carlos Eduardo Ramos
|
echo("<strong>" . gettext("Packet Capture stopped.") . "<br/><br/>" . gettext("Packets Captured:") . "</strong><br/>");
|
254 |
b39ca83c
|
Scott Ullrich
|
?>
|
255 |
ab6a5cfc
|
Scott Ullrich
|
<textarea style="width:98%" name="code" rows="15" cols="66" wrap="off" readonly="readonly">
|
256 |
b39ca83c
|
Scott Ullrich
|
<?php
|
257 |
|
|
system ("/usr/sbin/tcpdump $disabledns $detail -r $fp$fn");
|
258 |
|
|
|
259 |
|
|
conf_mount_ro();
|
260 |
|
|
?>
|
261 |
|
|
</textarea>
|
262 |
|
|
<?php
|
263 |
ab6a5cfc
|
Scott Ullrich
|
}
|
264 |
b39ca83c
|
Scott Ullrich
|
}
|
265 |
|
|
?>
|
266 |
ab6a5cfc
|
Scott Ullrich
|
</td>
|
267 |
|
|
</tr>
|
268 |
|
|
<tr>
|
269 |
|
|
|
270 |
|
|
</table>
|
271 |
|
|
</form>
|
272 |
b39ca83c
|
Scott Ullrich
|
</td>
|
273 |
|
|
</tr>
|
274 |
|
|
</table>
|
275 |
4e7d1665
|
Scott Ullrich
|
|
276 |
b39ca83c
|
Scott Ullrich
|
<?php
|
277 |
4e7d1665
|
Scott Ullrich
|
include("fend.inc");
|
278 |
|
|
?>
|