[Wave Wind recommended] Curl spoof IP and source _php tutorial

Source: Internet
Author: User
To "Brush ticket" friends provide a good solution for IP, check the next, curl is really tough can forge IP and source.

1.php request 2.php.

1.php Code:

$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′)); Constructing IP
curl_setopt ($ch, Curlopt_referer, "http://www.gosoa.com.cn/"); Construction route
curl_setopt ($ch, Curlopt_header, 1);
$out = curl_exec ($ch);
Curl_close ($ch);

The 2.php code is as follows:

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"];

Forge success, this is not!!

The small garden of the wind--more serious development of PHP platform

< p="">

http://www.bkjia.com/PHPjc/440359.html www.bkjia.com true http://www.bkjia.com/PHPjc/440359.html techarticle to the friend to brush the ticket to provide a good solution for IP, check the next, curl is really tough can forge IP and source. 1.php request 2.php. 1.php code: $ch = Curl_init (); Curl_seto ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.