방법: 1. "file_get_contents($url,false,$context)" 함수를 사용합니다. 2. CURL 방법, 컬_init(), 컬_setopt(), 컬_exec() 및 기타 함수를 사용합니다. 3. fsockopen()을 사용합니다. 기능.
이 튜토리얼의 운영 환경: Windows 7 시스템, PHP 버전 7.1, DELL G3 컴퓨터
php는 현재 페이지의 이전 페이지, 즉 현재 페이지가 링크된 페이지의 URL 주소를 가져옵니다. $_SERVER['HTTP_REFERER'];
그러나 $_SERVER['HTTP_REFERER']를 위조하고 속일 수도 있습니다. $_SERVER['HTTP_REFERER']
위조하고 속이는 방법에는 세 가지가 있습니다. window 플랫폼은 phpstudy 통합 환경 nginx를 사용합니다. 이 방법은 유효하지 않습니다. apache는 정상입니다. 다른 플랫폼 버전은 테스트되지 않았습니다.
첫 번째 방법: file_get_contents
$url = "http://localhost/test/test.php"; $refer="http://www.aa.com"; $opt=array('http'=>array('header'=>"Referer: $refer")); $context=stream_context_create($opt); $file_contents = file_get_contents($url,false, $context); echo $file_contents;
stream_context_create는 file_get_contents의 중요한 매개변수를 위조합니다.
두 번째 방법: CURL
$url = "http://localhost/test/test.php"; // 请求的页面地址 $refer="http://www.aa.com"; //伪造的页面地址 $ch = curl_init(); curl_setopt ($ch, CURLOPT_URL,$url); curl_setopt ($ch, CURLOPT_REFERER,$refer); curl_exec ($ch); curl_close ($ch);
세 번째 방법: fsockopen
$url="http://localhost/test/test.php"; $target = "http://www.manongjc.com/"; /** sockopen 伪造 网站来源地址 * @parem $url 要访问的页面地址 * @parem $target 伪造来源页面 * @parem $port 网站端口 默认 80 * @parem 页面脚本执行时间 默认 30 s * */ function referer($url,$target,$port=80,$t=30) { $info=parse_url($url); $fp = fsockopen($info["host"], $port, $errno, $errstr, $t); if(!$fp) { echo "$errstr($errno)".PHP_EOL; } else { $out = "GET ".$info['path']." HTTP/1.1".PHP_EOL; $out .= "Host: ".$info["host"].PHP_EOL; $out .= "Referer: ".$target.PHP_EOL; $out .= "Connection: Close".PHP_EOL; $out .= PHP_EOL; fwrite($fp, $out); while(!feof($fp)) { echo fgets($fp); // 发送 head 请求头信息 } fclose($fp); } } //函数调用 referer($url,$target);
추천 학습: "PHP 비디오 튜토리얼"
위 내용은 PHP에서 리퍼러 주소를 위조하는 세 가지 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!