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.



In reply to Re: get the user id and pwd who logs in to the cgi/perl application by Kanji
in thread get the user id and pwd who logs in to the cgi/perl application by rsennat

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.