Added session token checking.
This commit is contained in:
parent
3c2b05d222
commit
1e5b2a497e
|
@ -84,6 +84,13 @@ class NewApplicationAction extends OwnerDesignAction
|
|||
|
||||
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
|
||||
// CSRF protection
|
||||
$token = $this->trimmed('token');
|
||||
if (!$token || $token != common_session_token()) {
|
||||
$this->clientError(_('There was a problem with your session token.'));
|
||||
return;
|
||||
}
|
||||
|
||||
$cur = common_current_user();
|
||||
|
||||
if ($this->arg('cancel')) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user