diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php
index 2ca4bda9bf..b7768d81c7 100755
--- a/pandora_console/general/login_page.php
+++ b/pandora_console/general/login_page.php
@@ -334,6 +334,9 @@ if ($config['enterprise_installed']) {
}
}
+// CSRF validation.
+html_print_csrf_hidden();
+
echo '';
echo '
';
echo '
';
@@ -686,7 +689,7 @@ html_print_div(['id' => 'forced_title_layer', 'class' => 'forced_title_layer', '
});
$("#submit-hide-login-logout").click (function () {
- $("#login_logout").dialog('close');
+ document.location = "";
});
});
break;
diff --git a/pandora_console/index.php b/pandora_console/index.php
index 52e7053f7c..667c6cfd72 100755
--- a/pandora_console/index.php
+++ b/pandora_console/index.php
@@ -246,6 +246,8 @@ $page = $sec2;
// Reference variable for old time sake.
$sec = get_parameter_get('sec');
$sec = safe_url_extraclean($sec);
+// CSRF Validation.
+$validatedCSRF = validate_csrf_code();
$process_login = false;
@@ -319,7 +321,7 @@ if (! isset($config['id_user'])) {
// Code.
$code = (string) get_parameter_post('auth_code');
- if (!empty($code)) {
+ if (empty($code) === false) {
$result = validate_double_auth_code($nick, $code);
if ($result === true) {
@@ -331,7 +333,7 @@ if (! isset($config['id_user'])) {
// Error message.
$config['auth_error'] = __('Invalid code');
- if (!isset($_SESSION['prepared_login_da']['attempts'])) {
+ if (isset($_SESSION['prepared_login_da']['attempts']) === false) {
$_SESSION['prepared_login_da']['attempts'] = 0;
}
@@ -471,6 +473,18 @@ if (! isset($config['id_user'])) {
}
}
+ // CSRF Validation not pass in login.
+ if ($validatedCSRF === false) {
+ $process_error_message = __(
+ '%s cannot verify the origin of the request. Try again, please.',
+ get_product_name()
+ );
+
+ include_once 'general/login_page.php';
+ // Finish the execution.
+ exit('