Skip to content
Snippets Groups Projects
Commit b4de89e6 authored by Lukas Reschke's avatar Lukas Reschke
Browse files

Sanitize download URL

@MTGap Can you please check if this break something?
parent ac79fe64
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { ...@@ -129,7 +129,7 @@ if (isset($_GET['file']) || isset($_GET['dir'])) {
} else { } else {
$getPath = ''; $getPath = '';
} }
$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath, false); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath);
} else { } else {
// Show file preview if viewer is available // Show file preview if viewer is available
$tmpl->assign('uidOwner', $uidOwner); $tmpl->assign('uidOwner', $uidOwner);
...@@ -137,14 +137,14 @@ if (isset($_GET['file']) || isset($_GET['dir'])) { ...@@ -137,14 +137,14 @@ if (isset($_GET['file']) || isset($_GET['dir'])) {
$tmpl->assign('filename', basename($path)); $tmpl->assign('filename', basename($path));
$tmpl->assign('mimetype', OC_Filesystem::getMimeType($path)); $tmpl->assign('mimetype', OC_Filesystem::getMimeType($path));
if ($type == 'file') { if ($type == 'file') {
$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.$_GET['file'].'&download', false); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&file='.$_GET['file'].'&download');
} else { } else {
if (isset($_GET['path'])) { if (isset($_GET['path'])) {
$getPath = $_GET['path']; $getPath = $_GET['path'];
} else { } else {
$getPath = ''; $getPath = '';
} }
$tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath, false); $tmpl->assign('downloadURL', OCP\Util::linkToPublic('files').'&download&dir='.$_GET['dir'].'&path='.$getPath);
} }
} }
$tmpl->printPage(); $tmpl->printPage();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment