diff --git a/www/admin/phpinfo.php b/www/admin/phpinfo.php new file mode 100644 index 0000000000000000000000000000000000000000..2ad9e6f3c6dd8179965b196cfeb74da26603a7c5 --- /dev/null +++ b/www/admin/phpinfo.php @@ -0,0 +1,25 @@ +<?php + +require_once('../_include.php'); +require_once('SimpleSAML/Configuration.php'); +require_once('SimpleSAML/Session.php'); +require_once('SimpleSAML/Utilities.php'); + +try { + + $config = SimpleSAML_Configuration::getInstance(); + $session = SimpleSAML_Session::getInstance(true); + + /* Make sure that the user has admin access rights. */ + if (!isset($session) || !$session->isValid('login-admin') ) { + SimpleSAML_Utilities::redirect('/' . $config->getBaseURL() . 'auth/login-admin.php', + array('RelayState' => SimpleSAML_Utilities::selfURL()) + ); + } + phpinfo(); + +} catch(Exception $e) { + SimpleSAML_Utilities::fatalError('na', NULL, $e); +} + +?> \ No newline at end of file diff --git a/www/index.php b/www/index.php index 51521117db3f009c85768273b5ada09e19b37453..fd70caba7f07675f13aed39a16ffc3c069384ed8 100644 --- a/www/index.php +++ b/www/index.php @@ -50,6 +50,10 @@ $links[] = array( 'href' => 'example-simple/hostnames.php', 'text' => 'Diagnostics on hostname, port and protocol'); +$links[] = array( + 'href' => 'admin/phpinfo.php', + 'text' => 'PHPinfo'); + $linksmeta = array();