]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
CSRF protection in remotesubscribe
authorZach Copley <zach@controlyourself.ca>
Fri, 29 Aug 2008 05:40:38 +0000 (01:40 -0400)
committerZach Copley <zach@controlyourself.ca>
Fri, 29 Aug 2008 05:40:38 +0000 (01:40 -0400)
darcs-hash:20080829054038-7b5ce-d0503a8eb7f89a9d2de4aadd4550f4342b943b09.gz

actions/remotesubscribe.php

index 407c5babbe4938bd5a4e2eb2098fd4e64ede6cb2..c2c00ab619d3a9863fa66af982eb3dc3194bac31 100644 (file)
@@ -33,6 +33,14 @@ class RemotesubscribeAction extends Action {
                }
 
                if ($_SERVER['REQUEST_METHOD'] == '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;
+                       }
+                       
                        $this->remote_subscription();
                } else {
                        $this->show_form();
@@ -68,6 +76,7 @@ class RemotesubscribeAction extends Action {
                # button on profile page
                common_element_start('form', array('id' => 'remsub', 'method' => 'post',
                                                                                   'action' => common_local_url('remotesubscribe')));
+               common_hidden('token', common_session_token());
                common_input('nickname', _('User nickname'), $nickname,
                                         _('Nickname of the user you want to follow'));
                common_input('profile_url', _('Profile URL'), $profile,