Added file existence check.

I added a check to see if the file exists.
This commit is contained in:
System Void 2015-11-24 07:51:23 +00:00
commit d5441fdf85

View file

@ -11,17 +11,13 @@ if (($_SESSION['user'] == 'admin') && (!empty($_SESSION['look']))) {
$user = $_SESSION['look']; $user = $_SESSION['look'];
} }
if (!empty($_REQUEST['path'])) {
$path = $_REQUEST['path']; $path = $_REQUEST['path'];
if (!empty($path) && file_exists($path)) {
header("Content-type: application/octet-stream"); header("Content-type: application/octet-stream");
header("Content-Transfer-Encoding: binary"); header("Content-Transfer-Encoding: binary");
header("Content-disposition: attachment;filename=".basename($path)); header("Content-disposition: attachment;filename=".basename($path));
passthru(VESTA_CMD . "v-open-fs-file " . $user . " " . escapeshellarg($path)); passthru(VESTA_CMD . "v-open-fs-file " . $user . " " . escapeshellarg($path));
exit; exit;
} } else {
else {
die('File not found'); die('File not found');
} }
?>