Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-20-2002, 02:08 AM
|
#1
|
Member
Registered: Aug 2001
Location: GD, GZ, China
Posts: 240
Rep:
|
Please check this program(perl) for me!
I don't know what's wrong. Thanks in advance.
#!/usr/bin/perl -w
use CGI qw(:all);
use strict;
my $name;
my $passwd;
my $cryptpasswd;
my $name=param('name');
my $passwd=param('passwd');
chomp $name;
chomp $passwd;
if (my $name eq "")
{ print "Please input your name!\n"; exit;}
if (my $passwd eq "")
{ print "Please input password!\n"; exit;}
my $cryptpasswd=crypt($passwd,"ss");
open (PASSWD,"/var/www/cgi-bin/shadow")||die "Fail to open file :$\n";
$shadow=;
close(PASSWD);
@shadow=split(/:/,$shadow);
print "$name\n";
print "$cryptpasswd\n";
print "$shadow[0]\n";
print "$shadow[1]\n";
if ((my $name eq $user) && (my $cryptpasswd eq $passwdshadow)) { print "Thanks!\n"; exit;}
else { print "Wrong input£¡\n"; exit;}
|
|
|
04-25-2002, 04:21 PM
|
#2
|
Member
Registered: Apr 2002
Location: Tamaqua, Pa
Distribution: Slackware. Gentoo 1.4rc3, RH9, Mandrake 9.1, Debian, FreeBSD, OpenBSD, Fedra Core 3 x86_64
Posts: 71
Rep:
|
I think it's looking for a module you don't have declared
|
|
|
04-25-2002, 06:56 PM
|
#3
|
Member
Registered: Aug 2001
Location: London UK
Distribution: Redhat 7.2, soon to be LFS!
Posts: 42
Rep:
|
you using lots of variables that you havent declared.
Also, your declaring variables twice with the use of the 'my' statement
I think you should declare all your vars up to with 'my'
You dont use 'my' every time you use the var there after.
Also, i think what your trying to do with:
$shadow=;
would be better written as
$shadow=<PASSWD>;
That should read the file into the $shadow variable.
The next next line will then 'split' the var into separate elements and stick these in the @shadow array.
Also, what is $passwdshadow in the line:
if ((my $name eq $user) && (my $cryptpasswd eq $passwdshadow)) { print "Thanks!\n"; exit;}
this is the only time you've used this var so $cryptpasswd will never be equal to $passwdshadow
hth
Martin
|
|
|
All times are GMT -5. The time now is 11:26 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|