From af7cc392cac9ba9fd87c863a5a598cd3b39bfc3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=85kre=20Solberg?= <andreas.solberg@uninett.no> Date: Thu, 6 Mar 2008 16:42:45 +0000 Subject: [PATCH] check for valid sessions in auth modules git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@372 44740490-163a-0410-bde0-09ae8108e29a --- www/auth/login-admin.php | 2 ++ www/auth/login-feide.php | 5 +++++ www/auth/login-ldapmulti.php | 2 ++ www/auth/login-radius.php | 3 +++ www/auth/login.php | 2 ++ 5 files changed, 14 insertions(+) diff --git a/www/auth/login-admin.php b/www/auth/login-admin.php index 2fd513e11..88471aa47 100644 --- a/www/auth/login-admin.php +++ b/www/auth/login-admin.php @@ -19,6 +19,8 @@ $error = null; $attributes = array(); $username = null; +if (empty($session)) + SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NOSESSION'); /* Load the RelayState argument. The RelayState argument contains the address * we should redirect the user to after a successful authentication. diff --git a/www/auth/login-feide.php b/www/auth/login-feide.php index 59b4b67d9..b556fa867 100644 --- a/www/auth/login-feide.php +++ b/www/auth/login-feide.php @@ -40,6 +40,11 @@ SimpleSAML_Logger::info('AUTH - ldap-feide: Accessing auth endpoint login-feide' $error = null; $attributes = array(); + +if (empty($session)) + SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NOSESSION'); + + /* * Load the RelayState argument. The RelayState argument contains the address * we should redirect the user to after a successful authentication. diff --git a/www/auth/login-ldapmulti.php b/www/auth/login-ldapmulti.php index ee33b8926..65189cd24 100644 --- a/www/auth/login-ldapmulti.php +++ b/www/auth/login-ldapmulti.php @@ -19,6 +19,8 @@ require_once($ldapconfigfile); SimpleSAML_Logger::info('AUTH - ldap-multi: Accessing auth endpoint login-ldapmulti'); +if (empty($session)) + SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NOSESSION'); $error = null; $attributes = array(); diff --git a/www/auth/login-radius.php b/www/auth/login-radius.php index a87eb542a..3aadf28e5 100644 --- a/www/auth/login-radius.php +++ b/www/auth/login-radius.php @@ -18,6 +18,9 @@ SimpleSAML_Logger::info('AUTH - radius: Accessing auth endpoint login'); $error = null; $attributes = array(); +if (empty($session)) + SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NOSESSION'); + /* Load the RelayState argument. The RelayState argument contains the address * we should redirect the user to after a successful authentication. */ diff --git a/www/auth/login.php b/www/auth/login.php index ea5b4e579..69a50992e 100644 --- a/www/auth/login.php +++ b/www/auth/login.php @@ -21,6 +21,8 @@ $error = null; $attributes = array(); $username = null; +if (empty($session)) + SimpleSAML_Utilities::fatalError($session->getTrackID(), 'NOSESSION'); /* Load the RelayState argument. The RelayState argument contains the address * we should redirect the user to after a successful authentication. -- GitLab