Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: get the user id and pwd who logs in to the cgi/perl application

by Kanji (Parson)
on Dec 07, 2005 at 19:59 UTC ( [id://515021]=note: print w/replies, xml ) Need Help??


in reply to get the user id and pwd who logs in to the cgi/perl application

Your question isn't entirely clear, but if you mean the CGI application is password protected and you want the user/pass of whomever logged into that, then:-


If it's protected with htaccess...

CGI.pm's remote_user method will give you the username.

There's no equivalent method for passwords because most sane web servers purposely remove that information prior to running your script.

The only way to fix that would be to reconfigure your server, which may entail changing source code and recompiling the web server.

You should then be able to see the password somewhere in the %ENV hash. (If your web server ISN'T sane, you may already be able to find the password there.)

If it's protected via code in the CGI itself (eg, parsing a login form)...

Again, using CGI.pm, you can access the contents of a submitted form using the param method, so if you had fields named 'username' and 'password' in your login form, you'd access them with $q->param('username') and $q->param('password') respectively (assuming your CGI object was in $q).


If neither of these address your problem, then I refer you to idsfa's post above so that we can more fully understand your question.

    --k.


  • Comment on Re: get the user id and pwd who logs in to the cgi/perl application

Replies are listed 'Best First'.
Re^2: get the user id and pwd who logs in to the cgi/perl application
by rsennat (Beadle) on Dec 07, 2005 at 20:50 UTC
    Yes its protected with htaccess only. So how do we need to reconfigure the appache server. Any idea??
    anyway i will post this in the apache mailing lists.

    if you have any idea, please suggest.

    thanks

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://515021]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-04-18 02:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found