summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2016-05-20 12:13:15 -0400
committerjim-p <jimp@pfsense.org>2016-05-20 12:13:15 -0400
commita3013ca688ce6e8b506fa2a5c6251f77778e39bc (patch)
tree3c4f1eb4ea30c5c1950448b410e4d2675b335804 /src/usr/local/www
parent0e4e4251ebf09937e7069a94f5faef51bbe15fac (diff)
downloadpfsense-a3013ca688ce6e8b506fa2a5c6251f77778e39bc.zip
pfsense-a3013ca688ce6e8b506fa2a5c6251f77778e39bc.tar.gz
Fix quoting in diag_routes.php, see ticket #6371
Diffstat (limited to 'src/usr/local/www')
-rw-r--r--src/usr/local/www/diag_routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/diag_routes.php b/src/usr/local/www/diag_routes.php
index ed34148..250c3f5 100644
--- a/src/usr/local/www/diag_routes.php
+++ b/src/usr/local/www/diag_routes.php
@@ -80,7 +80,7 @@ if (isset($_REQUEST['isAjax'])) {
}
if (!empty($_REQUEST['filter'])) {
- $netstat .= " | /usr/bin/sed -e '1,3d; 5,\$ { /" . escapeshellarg(htmlspecialchars($_REQUEST['filter'])) . "/!d; };'";
+ $netstat .= " | /usr/bin/sed -e " . escapeshellarg("1,3d; 5,\$ { /" . htmlspecialchars($_REQUEST['filter']) . "/!d; };");
} else {
$netstat .= " | /usr/bin/sed -e '1,3d'";
}
OpenPOWER on IntegriCloud