Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Determine ip address/hostname of requesting host

by blue_cowdawg (Monsignor)
on Sep 21, 2006 at 21:09 UTC ( [id://574268]=note: print w/replies, xml ) Need Help??


in reply to Determine ip address/hostname of requesting host

      Where I'm stuck is that I will need to determine the ip address of the machine from which the login attempt failed.

On a non-production machine that you don't care about try the following very evil code:

#!/usr/bin/perl -w use CGI qw/ :standard /; my $cgi=new CGI; print header,start_html; print h1("Environment"); print table( Tr(th("Environment Variable"),th("Value")), map { Tr(td($_),td($ENV{$_})) } sort keys %ENV ); print hr; print h1('CGI Varialbes'); print table ( Tr(th("parameter"),th("parameter value")), map { Tr(td($_),td($cgi->param($_))) } sort $cgi->param ) ; print end_html;
I call this evil because besides what you are looking for is some information that you really don't want to leak to the "public."

Of particular interest in your case is the following key and value that are found in the %ENV hash:

REMOTE_ADDR 68.37.227.52
There's other information there as well but, this was what you specifically asked for.

Update: (GAH!) ikegami got his post out there before I hit "submit" Oh well, the code I put up there is good stuff anyway if you want to "play."


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-24 00:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found