พอดีจะเขียน php เพื่อดึง content หน้านึงโดยที่จะต้อง fake ip ให้ได้ครับ เพื่อจะได้ไม่ถูกเก็บบันทึกลง log file พอจะทำได้ไหมครับ
Proxy ครับ
<?php
$url = 'http://dynupdate.no-ip.com/ip.php';
$proxy = '130.211.85.177:3128'; // แก้เป็น Proxy ip กับ port
//$proxyauth = 'user:password';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy);
//curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyauth);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
$curl_scraped_page = curl_exec($ch);
curl_close($ch);
echo $curl_scraped_page;
?>
ส่วน Proxy หาได้ตามนี้ครับ หรือ Google ว่า free proxy list
https://free-proxy-list.net/
ที่มา
http://stackoverflow.com/questions/5211887/how-to-use-curl-via-a-proxy
ลง Tor ไว้แล้วเรียกใช้ Tor เป็น Proxy
ดึงผ่าน proxy
น่าสนใจครับ