Home > Article > Backend Development > PHP curl fake IP address and header information code example, curlheader_PHP tutorial
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"];