summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/wizard.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2015-12-04 15:49:50 -0500
committerjim-p <jimp@pfsense.org>2015-12-04 15:49:50 -0500
commit44bcf766b9ddd4fd0a3327deb2213f9666aa6f4a (patch)
tree49822eaae579456f53f3868936efbeeaa454c3ce /src/usr/local/www/wizard.php
parentba5c55e9e57fe0e42d7b25968874d00bf143f50b (diff)
downloadpfsense-44bcf766b9ddd4fd0a3327deb2213f9666aa6f4a.zip
pfsense-44bcf766b9ddd4fd0a3327deb2213f9666aa6f4a.tar.gz
Address a potential LFI in pkg.php and wizard.php without breaking the ability to pass relative paths Restricts them to files under their intended base directories.
Diffstat (limited to 'src/usr/local/www/wizard.php')
-rw-r--r--src/usr/local/www/wizard.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/usr/local/www/wizard.php b/src/usr/local/www/wizard.php
index c47db6c..2f97112 100644
--- a/src/usr/local/www/wizard.php
+++ b/src/usr/local/www/wizard.php
@@ -97,8 +97,14 @@ if (empty($xml)) {
print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml));
die;
} else {
- if (file_exists("{$g['www_path']}/wizards/{$xml}")) {
- $pkg = parse_xml_config_pkg("{$g['www_path']}/wizards/" . $xml, "pfsensewizard");
+ $wizard_xml_prefix = "{$g['www_path']}/wizards";
+ $wizard_full_path = "{$wizard_xml_prefix}/{$xml}";
+ if (substr_compare(realpath($wizard_full_path), $wizard_xml_prefix, 0, strlen($wizard_xml_prefix))) {
+ print_info_box_np(gettext("ERROR: Invalid path specified."));
+ die;
+ }
+ if (file_exists($wizard_full_path)) {
+ $pkg = parse_xml_config_pkg($wizard_full_path, "pfsensewizard");
} else {
print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml));
die;
OpenPOWER on IntegriCloud