diff --git a/modules/doc/application/controllers/ModuleController.php b/modules/doc/application/controllers/ModuleController.php index 3b65b23b0..47dfb1c14 100644 --- a/modules/doc/application/controllers/ModuleController.php +++ b/modules/doc/application/controllers/ModuleController.php @@ -139,7 +139,7 @@ class ModuleController extends DocController $image = $this->params->getRequired('image'); $docPath = $this->getPath($module, Icinga::app()->getModuleManager()->getModuleDir($module, '/doc')); $imagePath = realpath($docPath . '/' . $image); - if ($imagePath === false) { + if ($imagePath === false || substr($imagePath, 0, strlen($docPath)) !== $docPath) { $this->httpNotFound('%s does not exist', $image); }