Home  >  Article  >  Backend Development  >  PHP uses CURL to forge IP and source_PHP tutorial

PHP uses CURL to forge IP and source_PHP tutorial

WBOY
WBOYOriginal
2016-07-22 09:02:451061browse

  来源ip,,,1.php 请求 2.php 。

  1.php代码:

  $ch = curl_init();

  curl_setopt($ch, CURLOPT_URL, "http://localhost/2.php");

  curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWARDED-FOR:8.8.8.8', 'CLIENT-IP:8.8.8.8')); //构造IP

  curl_setopt($ch, CURLOPT_REFERER, "http://www.gosoa.com.cn/ "); //构造来路

  curl_setopt($ch, CURLOPT_HEADER, 1);

  $out = curl_exec($ch);

  curl_close($ch);

  2.php代码如下:

  function getClientIp() {

  if (!empty($_SERVER["HTTP_CLIENT_IP"]))

  $ip = $_SERVER["HTTP_CLIENT_IP"];

  else if (!empty($_SERVER["HTTP_X_FORWARDED_FOR"]))

  $ip = $_SERVER["HTTP_X_FORWARDED_FOR"];

  else if (!empty($_SERVER["REMOTE_ADDR"]))

  $ip = $_SERVER["REMOTE_ADDR"];

  else

  $ip = "err";

  return $ip;

  }

  echo "IP: " . getClientIp() . "";

  echo "referer: " . $_SERVER["HTTP_REFERER"];

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/371880.htmlTechArticle来源ip,,,1.php 请求 2.php 。 1.php代码: $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, http://localhost/2.php); curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWA...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn