From: ivan Date: Thu, 18 Mar 2004 20:58:11 +0000 (+0000) Subject: don't re-crypt encrypted passwords X-Git-Tag: NET_WHOIS_RAW_0_31~56 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=bb70dc0af47c15b8041ebc85b6eff234a26baa14;ds=sidebyside don't re-crypt encrypted passwords --- diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm index db2e7aaf9..a4eb0a052 100644 --- a/FS/FS/part_export/shellcommands.pm +++ b/FS/FS/part_export/shellcommands.pm @@ -59,9 +59,15 @@ sub _export_command { $finger = shell_quote $finger; $quoted_password = shell_quote $_password; $domain = $svc_acct->domain; - $crypt_password = ''; #surpress "used only once" warnings - $crypt_password = crypt( $svc_acct->_password, + + #eventually should check a "password-encoding" field + if ( length($svc_acct->_password) == 13 + || $svc_acct->_password =~ /^\$(1|2a?)\$/ ) { + $crypt_password = $svc_acct->_password; + } else { + $crypt_password = crypt( $svc_acct->_password, $saltset[int(rand(64))].$saltset[int(rand(64))] ); + } $self->shellcommands_queue( $svc_acct->svcnum, user => $self->option('user')||'root',