View Full Version : Verify your IP
The Dude 11-29-2002, 12:58 AM HERE (http://www.whatismyip.com/)
Usefull if your going thru a proxy and wanna make sure YOUR ip isnt there......
The Dude :)
Acroplex 11-29-2002, 01:17 AM Hmmmm...what if....what IF....someone grabs IPs to subsequently send messenger service spam to? :eek:
weeps 11-29-2002, 08:57 AM There is also http://www.whatismyipaddress.com/
1upromo 11-29-2002, 09:00 AM very funny,
akashik 11-29-2002, 09:57 AM I use this one when I need my IP address:
http://www.ipchicken.com/
Seem's our fine feathered friend is branching out :)
Greg Moore
coight 11-29-2002, 10:12 AM Originally posted by kdghsu
There is also http://www.whatismyipaddress.com/
Talk about advertising :angry:
Popups banners the works!
filburt1 11-29-2002, 01:07 PM http://www.dyndns.org/
Register a name (free) then ping yourself.
interactive 11-29-2002, 04:17 PM http://catchtraffic.com/test.php theres a little script, tells your host, and ip. Just uses 2 php functions.
MGCJerry 11-29-2002, 06:15 PM I use my little script hosted on my site when I need to get my current IP. It is really simple too and no adverts.
I'm going to redo it in php soon and add more "features" I need to know about.
ChickenSteak 11-29-2002, 06:45 PM <?php
$ip = $_SERVER[REMOTE_ADDR];
$host = gethostbyaddr($ip);
print "Your IP Address is: $ip";
print "<br>&<br>";
print "Your hostname is: $host";
?>
interactive 11-29-2002, 07:20 PM or you could just go ;)
<?php
$get=gethostbyaddr($REMOTE_ADDR);
echo "Your host is: ".$get;
echo "<BR>Your ip is: ".$REMOTE_ADDR;
?>
filburt1 11-29-2002, 07:50 PM Originally posted by interactive
or you could just go ;)
<?php
$get=gethostbyaddr($REMOTE_ADDR);
echo "Your host is: ".$get;
echo "<BR>Your ip is: ".$REMOTE_ADDR;
?>
$REMOTE_ADDR is deprecated, you should use superglobals like $_SERVER instead.
ChickenSteak 11-29-2002, 07:52 PM Indeed looks like my script is the winner ;).
filburt1 11-29-2002, 07:57 PM Not really, you should have used quotes ($_SERVER['REMOTE_ADDR'])
ChickenSteak 11-29-2002, 08:09 PM Quotes will error out in less you escape it with {} either way it works with or without quotes, quotes just slow it down more ;).
The Dude 11-29-2002, 10:43 PM Does anyone know of a free SITE that tests your firewall for known securities,etc..(Besides GRC)....
Thanx in advance.......
The Dude :)
MGCJerry 11-29-2002, 10:58 PM Originally posted by The Dude*
Does anyone know of a free SITE that tests your firewall for known securities,etc..(Besides GRC)....
Thanx in advance.......
The Dude :)
Here (http://scan.sygate.com) is a site that can do it..
interactive 11-29-2002, 11:41 PM Originally posted by filburt1
$REMOTE_ADDR is deprecated, you should use superglobals like $_SERVER instead.
I'm used ot programming PHP prior to 4.2.1 or whenever it was when they changed that. But yes if you we're programming in newer version of PHP $_SER.... would be the correct way :D.
|