]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
passwordauth: avoid userinfo forgery via repeated email parameter
authorSimon McVittie <smcv@debian.org>
Wed, 11 Jan 2017 13:19:13 +0000 (13:19 +0000)
committerSimon McVittie <smcv@debian.org>
Wed, 11 Jan 2017 15:17:01 +0000 (15:17 +0000)
OVE-20170111-0001

IkiWiki/Plugin/passwordauth.pm

index 4e0d36ed42dc8c3610d8b0f63278bc51f1ae78b4..346515e23094e180f73b50cfd9d90c67f06c7a32 100644 (file)
@@ -326,8 +326,9 @@ sub formbuilder (@) {
                                IkiWiki::cgi_postsignin($cgi, $session);
                        }
                        elsif ($form->submitted eq 'Create Account') {
+                               my $email = $form->field('email');
                                if (IkiWiki::userinfo_setall($user_name, {
-                                       'email' => $form->field('email'),
+                                       'email' => $email,
                                        'regdate' => time})) {
                                        setpassword($user_name, $form->field('password'));
                                        $form->field(name => "confirm_password", type => "hidden");