Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
New here, someone wrote about
#40
(02-23-2012, 02:13 PM)Nickdaflameperson Wrote: public function original_ip()
{
if (!empty($_SERVER['HTTP_CLIENT_IP'])) //check ip from share internet
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) //to check ip is pass from proxy
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}

return $ip;

__________

I guess you refer to highly anonymity proxies and not just the common one's , as with the above script you can reveal the true ip.

Another option is using tor project which provides you with high anonymity with a little sacrifice on the part of using flash player.

Um why would you do any of this? Are you looking at child porn? Why would you go to this extent to be so secretive. This kind of freaks me out. I am not very computer savy so maybe there would be another reason. Could you explain?
Reply


Messages In This Thread
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:25 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:23 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:38 PM
RE: New here, someone wrote about - by username - 02-16-2012, 05:42 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:44 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:54 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 06:11 PM
RE: New here, someone wrote about - by FAHQTOO - 02-16-2012, 06:03 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:52 PM
RE: New here, someone wrote about - by Cracker - 02-16-2012, 06:17 PM
RE: New here, someone wrote about - by thekid65 - 02-22-2012, 08:13 AM
RE: New here, someone wrote about - by IMaDick - 02-22-2012, 11:12 AM
RE: New here, someone wrote about - by Duchess - 02-22-2012, 02:03 PM
RE: New here, someone wrote about - by Duchess - 02-16-2012, 05:55 PM
RE: New here, someone wrote about - by Mohammed - 02-18-2012, 04:48 AM
RE: New here, someone wrote about - by Cracker - 02-21-2012, 12:15 PM
RE: New here, someone wrote about - by Duchess - 02-18-2012, 06:25 AM
RE: New here, someone wrote about - by Lady Cop - 02-21-2012, 11:48 AM
RE: New here, someone wrote about - by Duchess - 02-21-2012, 12:27 PM
RE: New here, someone wrote about - by krystalshores - 02-23-2012, 03:21 PM
RE: New here, someone wrote about - by Duchess - 02-23-2012, 02:23 PM
RE: New here, someone wrote about - by Duchess - 02-23-2012, 03:28 PM
RE: New here, someone wrote about - by Duchess - 02-23-2012, 03:29 PM
RE: New here, someone wrote about - by Duchess - 02-23-2012, 04:32 PM
RE: New here, someone wrote about - by Maggot - 02-23-2012, 05:32 PM
RE: New here, someone wrote about - by Duchess - 02-24-2012, 06:28 PM
RE: New here, someone wrote about - by Duchess - 02-24-2012, 07:01 PM
RE: New here, someone wrote about - by Duchess - 02-24-2012, 07:49 PM