X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=update.cgi;h=ddb8052be31984a74df35d58128d01b357e2fc4f;hb=69124a32dd2d4e722e04b7258457532f973e6f09;hp=36631697b96dc5b7fa50aef740b57666034fa39e;hpb=4d594aa634def79124cb6a25cebb08f9c51bac1f;p=mirror%2Fuserdir-ldap-cgi.git diff --git a/update.cgi b/update.cgi index 3663169..ddb8052 100755 --- a/update.cgi +++ b/update.cgi @@ -10,11 +10,13 @@ use strict vars; use CGI; use Data::UUID; use Digest::HMAC_SHA1 qw(hmac_sha1_hex); +use Digest::MD5 qw(md5_hex); use Util; use English; use URI::Escape; use Crypt::PasswdMD5; use Net::LDAP qw(LDAP_SUCCESS LDAP_PROTOCOL_ERROR); +use Net::LDAP::Util qw(ldap_explode_dn); my %config = &Util::ReadConfigFile; @@ -144,7 +146,7 @@ if (!($query->param('doupdate'))) { my $confirmstring = ''; my $sudopassword = ''; for my $e(@{$entry->{'sudopassword'}}) { - my ($uuid, $status, $hosts, $crypted) = ($e =~ /^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}) (confirmed:[0-9a-f]{40}|unconfirmed) ([a-z0-9.,*]+) ([^ ]+)$/); + my ($uuid, $status, $hosts, $crypted) = ($e =~ /^([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}) (confirmed:[0-9a-f]{40}|unconfirmed) ([a-z0-9.,*-]+) ([^ ]+)$/); unless (defined $uuid) { $sudopassword .= "Unparseable line!\n"; next; @@ -207,7 +209,7 @@ if (!($query->param('doupdate'))) { # Actually update stuff... - my ($newpassword, $newstaddress, $newwebpassword, $newvoippassword); + my ($newpassword, $newstaddress, $newwebpassword, $newrtcpassword); # Good god, why would we want to do that here? it breaks password setting # etc, and it doesn't prevent people from setting eveil stuff in ldap @@ -253,20 +255,20 @@ if (!($query->param('doupdate'))) { &Util::LDAPUpdate($ldap, $editdn, 'webPassword', $newwebpassword); } - if ($query->param('newvoippass') && $query->param('newvoippassvrfy')) { - if ($query->param('newvoippass') ne $query->param('newvoippassvrfy')) { + if ($query->param('newrtcpass') && $query->param('newrtcpassvrfy')) { + if ($query->param('newrtcpass') ne $query->param('newrtcpassvrfy')) { # passwords don't match... - &Util::HTMLError("The voip-passwords you specified do not match. Please go back and try again."); + &Util::HTMLError("The rtc-passwords you specified do not match. Please go back and try again."); } - my ($r, $msg) = &Util::checkPasswordQuality($query->param('newvoippass'), undef, [@ldapinfo_for_pwcheck]); + my ($r, $msg) = &Util::checkPasswordQuality($query->param('newrtcpass'), undef, [@ldapinfo_for_pwcheck]); if ($r) { - &Util::HTMLError("Password check failed for voip-password: $msg. Please go back and try again."); + &Util::HTMLError("Password check failed for rtc-password: $msg. Please go back and try again."); } # create a md5 crypted password - $newvoippassword = '{crypt}'.crypt($query->param('newpass'), &Util::CreateCryptSalt(1)); + $newrtcpassword = &md5_hex( ldap_explode_dn($editdn)->[0]{UID} . '@debian.org:rtc.debian.org:' . $query->param('newrtcpass') ); - &Util::LDAPUpdate($ldap, $editdn, 'voipPassword', $newvoippassword); + &Util::LDAPUpdate($ldap, $editdn, 'rtcPassword', $newrtcpassword); } $newstaddress = $query->param('staddress');