Csrf Translate

This commit is contained in:
Fred Tempez 2023-06-20 20:19:19 +02:00
parent f4dfbbe8e0
commit 43b084369e
1 changed files with 2 additions and 5 deletions

View File

@ -69,7 +69,6 @@ class translate extends common
$lang = $this->getUrl(2); $lang = $this->getUrl(2);
// Jeton incorrect ou URl avec le code langue incorrecte // Jeton incorrect ou URl avec le code langue incorrecte
if ( if (
$this->getUrl(3) !== $_SESSION['csrf'] &&
array_key_exists($lang, self::$languages) === false array_key_exists($lang, self::$languages) === false
) { ) {
// Valeurs en sortie // Valeurs en sortie
@ -563,8 +562,7 @@ class translate extends common
$target = $this->getUrl(2); $target = $this->getUrl(2);
$lang = $this->getUrl(3); $lang = $this->getUrl(3);
if ( if (
$this->getUrl(4) !== $_SESSION['csrf'] array_key_exists($lang, self::$languages) === false
|| array_key_exists($lang, self::$languages) === false
) { ) {
// Valeurs en sortie // Valeurs en sortie
$this->addOutput([ $this->addOutput([
@ -618,8 +616,7 @@ class translate extends common
// Jeton incorrect ou URl avec le code langue incorrecte // Jeton incorrect ou URl avec le code langue incorrecte
$lang = $this->getUrl(2); $lang = $this->getUrl(2);
if ( if (
$this->getUrl(3) !== $_SESSION['csrf'] array_key_exists($lang, self::$languages) === false
|| array_key_exists($lang, self::$languages) === false
) { ) {
// Valeurs en sortie // Valeurs en sortie
$this->addOutput([ $this->addOutput([