summaryrefslogtreecommitdiff
path: root/pinyweb/cgi-bin/auth/newpass.cgi
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@cobain.omgwallhack.org>2018-09-24 23:09:57 -0700
committerJoe Rayhawk <jrayhawk@cobain.omgwallhack.org>2018-09-24 23:09:57 -0700
commit9f5b32d7833cce9171bc0035657693c7d73afc84 (patch)
tree4424701509951cb1f78d6d078f2d60d020a33148 /pinyweb/cgi-bin/auth/newpass.cgi
parent8e3dd1d39eced80d229ef411b193417d10067074 (diff)
downloadpiny-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-xpinyweb/cgi-bin/auth/newpass.cgi2
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.' );