]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
CSRF protection in recoverpassword
authorZach Copley <zach@controlyourself.ca>
Fri, 29 Aug 2008 05:28:24 +0000 (01:28 -0400)
committerZach Copley <zach@controlyourself.ca>
Fri, 29 Aug 2008 05:28:24 +0000 (01:28 -0400)
darcs-hash:20080829052824-7b5ce-39a8fd299b7a85793ad7a19fe00c93813ca882b6.gz

actions/recoverpassword.php

index 444dd1f2a90b3bf5ba7e18a7eb3e46dd6ac6eed0..0f390154341214d829499d3b3b38f49ce69b3a30 100644 (file)
@@ -176,6 +176,7 @@ class RecoverpasswordAction extends Action {
                common_element_start('form', array('method' => 'post',
                                                                                   'id' => 'recoverpassword',
                                                                                   'action' => common_local_url('recoverpassword')));
+               common_hidden('token', common_session_token());
                common_password('newpassword', _('New password'),
                                                _('6 or more characters, and don\'t forget it!'));
                common_password('confirm', _('Confirm'),
@@ -270,6 +271,13 @@ class RecoverpasswordAction extends Action {
 
        function reset_password() {
 
+               # 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;
+               }
+
                $user = $this->get_temp_user();
 
                if (!$user) {