From 182b99b4d964cf594a608b935155e835bd4deed4 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 11 Jan 2022 13:10:47 +0100 Subject: [PATCH] Fixed CRSF in SAML --- pandora_console/index.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/index.php b/pandora_console/index.php index b9e3585579..7828b2c700 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -424,6 +424,8 @@ if (! isset($config['id_user'])) { // Process logout. include 'general/logoff.php'; } + + $validatedCSRF = true; } else { // process_user_login is a virtual function which should be defined in each auth file. // It accepts username and password. The rest should be internal to the auth file.