diff options
author | ivan <ivan> | 2002-08-25 02:26:30 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-08-25 02:26:30 +0000 |
commit | 8c90a85bd16e7d2aa1afeb1fdd38662d60645869 (patch) | |
tree | d8f416779f23d1080edb1a6abb43e2ea456e39bb | |
parent | b181fa835716ef11055281416d685ef1f9242b0d (diff) |
properly quote password as well as finger
-rw-r--r-- | FS/FS/part_export/shellcommands.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/part_export/shellcommands.pm b/FS/FS/part_export/shellcommands.pm index d69848f22..3e9ac4a08 100644 --- a/FS/FS/part_export/shellcommands.pm +++ b/FS/FS/part_export/shellcommands.pm @@ -30,6 +30,7 @@ sub _export_command { ${$_} = $svc_acct->getfield($_) foreach $svc_acct->fields; } $finger = shell_quote $finger; + $_password = shell_quote $_password; $domain = $svc_acct->domain; $crypt_password = ''; #surpress "used only once" warnings $crypt_password = crypt( $svc_acct->_password, @@ -52,7 +53,9 @@ sub _export_replace { ${"old_$_"} = $old->getfield($_) foreach $old->fields; ${"new_$_"} = $new->getfield($_) foreach $new->fields; } + $old__password = shell_quote $old__password; $new_finger = shell_quote $new_finger; + $new__password = shell_quote $new__password; $new_domain = $new->domain; $new_crypt_password = ''; #surpress "used only once" warnings $new_crypt_password = crypt( $new->_password, |