Home > Backend Development > PHP Tutorial > PHP curl fake IP address and header information code example, curlheader_PHP tutorial

PHP curl fake IP address and header information code example, curlheader_PHP tutorial

WBOY
Release: 2016-07-13 09:56:02
Original
1010 people have browsed it

PHP curl forged IP address and header information code example, curlheader

curl, although powerful, can only forge $_SERVER["HTTP_X_FORWARDED_FOR"], for most IP address detection Programmatically speaking, $_SERVER["REMOTE_ADDR"] is difficult to forge:

The first is the code of client.php

Copy code The code is as follows:
$headers['CLIENT-IP'] = '202.103.229.40';
$headers['X-FORWARDED-FOR'] = '202.103.229.40';

$headerArr = array();
foreach( $headers as $n => $v ) {
$headerArr[] = $n .':' . $v;
}

ob_start();
$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, "http://localhost/curl/server.php");
curl_setopt ($ch, CURLOPT_HTTPHEADER , $headerArr ); //Construct IP
curl_setopt ($ch, CURLOPT_REFERER, "http://www.163.com/ "); //Construction origin
curl_setopt( $ch, CURLOPT_HEADER, 1);

curl_exec($ch);
curl_close ($ch);
$out = ob_get_contents();
ob_clean();

echo $out;

Then server.php

Copy code The code is as follows:
function GetIP(){
If(!emptyempty($_SERVER["HTTP_CLIENT_IP"]))
$cip = $_SERVER["HTTP_CLIENT_IP"];
​ else if(!emptyempty($_SERVER["HTTP_X_FORWARDED_FOR"]))
         $cip = $_SERVER["HTTP_X_FORWARDED_FOR"];
​ else if(!emptyempty($_SERVER["REMOTE_ADDR"]))
$cip = $_SERVER["REMOTE_ADDR"];
else
$cip = "Unable to obtain!";
Return $cip;
}
echo "
Access IP: ".GetIP()."
";
echo "
Access source: ".$_SERVER["HTTP_REFERER"];

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/990549.htmlTechArticlePHP curl forged IP address and header information code example. Although curlheader curl is powerful, it can only forge $_SERVER[ "HTTP_X_FORWARDED_FOR"], for most IP address detection programs...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template