Skip to content
Snippets Groups Projects
Commit a02ec6b0 authored by Till Brehm's avatar Till Brehm
Browse files

#5102

parent d09f4db5
No related branches found
No related tags found
No related merge requests found
......@@ -480,8 +480,8 @@ class functions {
// Function to check paths before we use it as include. Use with absolute paths only.
public function check_include_path($path) {
if(strpos($path,'//') === false) die('Include path seems to be an URL: '.$this->htmlentities($path));
if(strpos($path,'..') === false) die('Two dots are not allowed in include path: '.$this->htmlentities($path));
if(strpos($path,'//') !== false) die('Include path seems to be an URL: '.$this->htmlentities($path));
if(strpos($path,'..') !== false) die('Two dots are not allowed in include path: '.$this->htmlentities($path));
if(!preg_match("/^[a-zA-Z0-9_\/\.\-]+$/", $path)) die('Wrong chars in include path: '.$this->htmlentities($path));
$path = realpath($path);
if($path == '') die('Include path does not exist.');
......
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