Add missing CSRF check in TwoFactorController::deactivate()
This commit is contained in:
parent
ef1abecee4
commit
19ea9ed620
|
|
@ -33,6 +33,13 @@ abstract class BaseController extends Base
|
|||
}
|
||||
}
|
||||
|
||||
protected function checkCSRFForm()
|
||||
{
|
||||
if (! $this->token->validateCSRFToken($this->request->getRawValue('csrf_token'))) {
|
||||
throw new AccessForbiddenException();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check webhook token
|
||||
*
|
||||
|
|
@ -305,7 +312,7 @@ abstract class BaseController extends Base
|
|||
|
||||
return $filter;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Redirect the user after the authentication
|
||||
*
|
||||
|
|
|
|||
|
|
@ -119,6 +119,7 @@ class TwoFactorController extends UserViewController
|
|||
*/
|
||||
public function deactivate()
|
||||
{
|
||||
$this->checkCSRFForm();
|
||||
$user = $this->getUser();
|
||||
$this->checkCurrentUser($user);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue