diff options
author | Joe Rayhawk <jrayhawk@cobain.omgwallhack.org> | 2018-09-24 23:09:57 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@cobain.omgwallhack.org> | 2018-09-24 23:09:57 -0700 |
commit | 9f5b32d7833cce9171bc0035657693c7d73afc84 (patch) | |
tree | 4424701509951cb1f78d6d078f2d60d020a33148 /pinyweb/cgi-bin/auth/newpass.cgi | |
parent | 8e3dd1d39eced80d229ef411b193417d10067074 (diff) | |
download | piny-code-9f5b32d7833cce9171bc0035657693c7d73afc84.tar.gz piny-code-9f5b32d7833cce9171bc0035657693c7d73afc84.zip |
pinyweb: scalarizing CGI params because perl
Because not everyone wants to Perl Jam.
Diffstat (limited to 'pinyweb/cgi-bin/auth/newpass.cgi')
-rwxr-xr-x | pinyweb/cgi-bin/auth/newpass.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pinyweb/cgi-bin/auth/newpass.cgi b/pinyweb/cgi-bin/auth/newpass.cgi index 1031820..b367558 100755 --- a/pinyweb/cgi-bin/auth/newpass.cgi +++ b/pinyweb/cgi-bin/auth/newpass.cgi @@ -30,7 +30,7 @@ foreach my $n ( 1 .. 16 ) { $salt .= "\$"; -my $crypt = crypt( $q->param('p'), $salt ); +my $crypt = crypt( scalar( $q->param('p') ), $salt ); unless ( system( '/usr/sbin/piny-suid', $ENV{'REMOTE_USER'}, 'newpasshash', $crypt ) == 0 ) { die( 'newpass was unsuccessful.' ); |