vote up 4 vote down star
5

I know there are a plethora of $_SERVER variables headers available for IP address retrieval. I was wondering if there is a general consensus as to how to most accurately retrieve a user's real IP address (well knowing no method is perfect) using said variables?

I spent some time trying to find an in depth solution and came up with the following code based on a number of sources. I would love it if somebody could please poke holes in the answer or shed some light on something perhaps more accurate.

 /**
  * Retrieves the best guess of the client's actual IP address.
  * Takes into account numerous HTTP proxy headers due to variations
  * in how different ISPs handle IP addresses in headers between hops.
  */
 public function get_ip_address() {
  // check for shared internet/ISP IP
  if (!empty($_SERVER['HTTP_CLIENT_IP']) && $this->validate_ip($_SERVER['HTTP_CLIENT_IP']))
   return $_SERVER['HTTP_CLIENT_IP'];

  // check for IPs passing through proxies
  if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
   // check if multiple ips exist in var
   if (strpos($_SERVER['HTTP_X_FORWARDED_FOR'], ',') !== false) {
    $iplist = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
    foreach ($iplist as $ip) {
     if ($this->validate_ip($ip))
      return $ip;
    }
   } else {
    if ($this->validate_ip($_SERVER['HTTP_X_FORWARDED_FOR']))
     return $_SERVER['HTTP_X_FORWARDED_FOR'];
   }
  }
  if (!empty($_SERVER['HTTP_X_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_X_FORWARDED']))
   return $_SERVER['HTTP_X_FORWARDED'];
  if (!empty($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']) && $this->validate_ip($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
   return $_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
  if (!empty($_SERVER['HTTP_FORWARDED_FOR']) && $this->validate_ip($_SERVER['HTTP_FORWARDED_FOR']))
   return $_SERVER['HTTP_FORWARDED_FOR'];
  if (!empty($_SERVER['HTTP_FORWARDED']) && $this->validate_ip($_SERVER['HTTP_FORWARDED']))
   return $_SERVER['HTTP_FORWARDED'];

  // return unreliable ip since all else failed
  return $_SERVER['REMOTE_ADDR'];
 }

 /**
  * Ensures an ip address is both a valid IP and does not fall within
  * a private network range.
  *
  * @access public
  * @param string $ip
  */
 public function validate_ip($ip) {
  if (strtolower($ip) === 'unknown')
   return false;

  // generate ipv4 network address
  $ip = ip2long($ip);

  // if the ip is set and not equivalent of 255.255.255.255
  if ($ip !== false && $ip !== -1) {
   // make sure to get unsigned long representation of ip
   $ip = sprintf('%u', $ip);
   // do private network range checking
   if ($ip >= 0 && $ip <= 50331647) return false;
   if ($ip >= 167772160 && $ip <= 184549375) return false;
   if ($ip >= 2130706432 && $ip <= 2147483647) return false;
   if ($ip >= 2851995648 && $ip <= 2852061183) return false;
   if ($ip >= 2886729728 && $ip <= 2887778303) return false;
   if ($ip >= 3221225984 && $ip <= 3221226239) return false;
   if ($ip >= 3232235520 && $ip <= 3232301055) return false;
   if ($ip >= 4294967040) return false;
  }
  self::$ip = $ip;
  return true;
 }
flag
That is pretty damn impressive already. +1 – Pekka Gaiser Oct 28 at 2:18
I tried these variables and they were all blank except $_SERVER['REMOTE_ADDR'], which gave me a private IP address. Does anyone know how they do it at whatismyip.com? On that site, I get a useful IP address. – mikez302 Nov 2 at 18:57
As chisum commented below, the majority of of $_SERVER variables related to the user's IP address are merely optional as your packets make their way across the web. I would recommend doing a var_dump() of your $_SERVER variable to see what comes up for you. Regarding how whatismyip.com obtains your IP address, I wish I knew the answer. – cballou Nov 3 at 11:28

3 Answers

vote up 1 vote down

Even then however, getting a user's real Ip address is going to be unreliable. All they need do is use an anonymous proxy server (one that doesn't honor the headers for http_x_forwarded_for or http_forwarded etc) and all you get is their proxy server's ip. You can then see if there is a list of proxy server ips that are anonymous, but there is no way to be sure that is 100% accurate as well and the most it'd do is let you know it is a proxy server. And if someone is being clever, they can spoof headers for http forwards. Let's say I don't like the local college. I figure out what IP's they registered, and get their ip banned on your site by doing bad things because I figure out you honor the http forwards. The list is endless. Then there is, as you guessed internal IPs such as the college network I metioned before. A lot use a 10.x.x.x format. So all you would know is that it was forwarded for a shared network. Then I won't start much into it, but dynamic ips are the way of broadband anymore. So. Even if you get a user IP, expect it to change in 2 - 3 months, longest.

link|flag
Thanks for the input. I'm currently utilizing the user's IP address to aid in session authentication by using their class C IP as a limiting factor to limit session hijacking but allow for dynamic IPs within reason. Spoofed IPs and anonymous proxy servers is just something I'll have to deal with for a select group of individuals. – cballou Oct 28 at 10:04
Cool :) I am glad I can of help :) – Chisum Oct 29 at 0:03
This help enough to be an answer? Appreciate a reward if so :) – Chisum Nov 12 at 1:50
vote up 0 vote down

From: http://thephpcode.blogspot.com/2009/01/php-getting-secondary-internet-protocol.html

function getIP() {
$IP = '';
if (getenv('HTTP_CLIENT_IP')) {$IP =getenv('HTTP_CLIENT_IP');}
elseif (getenv('HTTP_X_FORWARDED_FOR')) {$IP =getenv('HTTP_X_FORWARDED_FOR');}
elseif (getenv('HTTP_X_FORWARDED')) {$IP =getenv('HTTP_X_FORWARDED');}
elseif (getenv('HTTP_FORWARDED_FOR')) {$IP =getenv('HTTP_FORWARDED_FOR');}
elseif (getenv('HTTP_FORWARDED')) {$IP = getenv('HTTP_FORWARDED');}
else {
$IP = $_SERVER['REMOTE_ADDR'];
}
return $IP;
}

HTTP FORWARDED for is one of the headers that the ISP might send. This is the actual IP address for the client that the client is using in the ISP's WAN. The ISP might have proxy servers, and thus the IP address in $_SERVER['REMOTE_ADDR'] is the ISP's proxy server.

link|flag
vote up 0 vote down

You pretty much answered your own question! :)

function getRealIpAddr() {
    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; }

Source

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.