git.schokokeks.org
Repositories
Help
Report an Issue
webinterface.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
e0a22de
Branches
Tags
master
ticket
webinterface.git
dispatch.php
aufgerufenes Modul muss eine Datei sein.
bernd
commited
e0a22de
at 2007-07-01 17:27:44
dispatch.php
Blame
History
Raw
<?php require_once('config.php'); require_once('inc/debug.php'); $go = $_GET['go']; /* sanitize $go */ if (strstr($go, "..") or strstr($go, "./") or strstr($go, ":") or (! file_exists("modules/$go")) or (! is_file("modules/$go"))) { die("illegal command"); } /* contruct prefix */ global $prefix; $prefix = "../"; $count = 0; str_replace("/", "x", $go, $count); $prefix = $prefix.str_repeat("../", $count); require_once('session/start.php'); $output = ""; require_once("inc/base.php"); /* setup module include path */ ini_set('include_path',ini_get('include_path').':./modules/'.dirname($go).'/include:'); /* Let the module work */ include("modules/".$go); $section = str_replace("/", "_", str_replace(".php", "", $go)); include('inc/top.php'); print $output; include('inc/bottom.php'); ?>