diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-29 00:29:08 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-29 00:29:08 -0400 |
commit | 9a65f45c4519074046a0f1628ce1da1e2e1fadb5 (patch) | |
tree | 0654be92e5b58d5243ae7378ce46cf5c663c05cf | |
parent | d0a466bdb76046421fe1274327453afede5ed6a9 (diff) |
CSRF protection in openidsettings
darcs-hash:20080829042908-84dde-1d1a22dfd3d89c5521aeb9069dc64c5f6dad3a27.gz
-rw-r--r-- | actions/openidsettings.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/actions/openidsettings.php b/actions/openidsettings.php index e77de88b1..f539d111f 100644 --- a/actions/openidsettings.php +++ b/actions/openidsettings.php @@ -40,6 +40,7 @@ class OpenidsettingsAction extends SettingsAction { 'id' => 'openidadd', 'action' => common_local_url('openidsettings'))); + common_hidden('token', common_session_token()); common_element('h2', NULL, _('Add OpenID')); common_element('p', NULL, _('If you want to add an OpenID to your account, ' . @@ -93,6 +94,7 @@ class OpenidsettingsAction extends SettingsAction { 'action' => common_local_url('openidsettings'))); common_element_start('p'); + common_hidden('token', common_session_token()); common_element('a', array('href' => $oid->canonical), $oid->display); common_element('input', array('type' => 'hidden', @@ -115,6 +117,13 @@ class OpenidsettingsAction extends SettingsAction { } function handle_post() { + # CSRF protection + $token = $this->trimmed('token'); + if (!$token || $token != common_session_token()) { + $this->show_form(_('There was a problem with your session token. Try again, please.')); + return; + } + if ($this->arg('add')) { $result = oid_authenticate($this->trimmed('openid_url'), 'finishaddopenid'); if (is_string($result)) { # error message |