summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_pppoe.php
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2013-01-24 10:09:06 +0000
committerErmal <eri@pfsense.org>2013-01-24 10:09:06 +0000
commit612230234f2522c2c370a1ed3ffd8bb969b50397 (patch)
treeead7df9ea51def0eb5dfa80f195dff8012e23c9a /usr/local/www/vpn_pppoe.php
parent0e22dda58ddc010d12126ed6af6589ff76d03043 (diff)
downloadpfsense-612230234f2522c2c370a1ed3ffd8bb969b50397.zip
pfsense-612230234f2522c2c370a1ed3ffd8bb969b50397.tar.gz
Validate before taking the input and do anything with it
Diffstat (limited to 'usr/local/www/vpn_pppoe.php')
-rwxr-xr-xusr/local/www/vpn_pppoe.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/local/www/vpn_pppoe.php b/usr/local/www/vpn_pppoe.php
index 03547d9..1b67ef2 100755
--- a/usr/local/www/vpn_pppoe.php
+++ b/usr/local/www/vpn_pppoe.php
@@ -75,7 +75,8 @@ if ($_GET['act'] == "del") {
if ($a_pppoes[$_GET['id']]) {
if ("{$g['varrun_path']}/pppoe" . $a_pppoes[$_GET['id']]['pppoeid'] . "-vpn.pid")
killbypid("{$g['varrun_path']}/pppoe" . $a_pppoes[$_GET['id']]['pppoeid'] . "-vpn.pid");
- mwexec("/bin/rm -r {$g['varetc_path']}/pppoe" . $a_pppoes[$_GET['id']]['pppoeid']);
+ if (is_dir({$g['varetc_path']}/pppoe" . $a_pppoes[$_GET['id']]['pppoeid']))
+ mwexec("/bin/rm -r {$g['varetc_path']}/pppoe" . $a_pppoes[$_GET['id']]['pppoeid']);
unset($a_pppoes[$_GET['id']]);
write_config();
header("Location: vpn_pppoe.php");
OpenPOWER on IntegriCloud