程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP中偽造HTTP_REFERER代碼

PHP中偽造HTTP_REFERER代碼

編輯:關於PHP編程

 

  1. error_reporting( E_ERROR | E_WARNING | E_PARSE );  
  2. set_time_limit(0); 
  3.  
  4. $server  = www.2cto.com;   // IP address  
  5. $host    = www.2cto.com;   // Domain name  
  6. $target  = /test.php?x=1;    // Specific program  
  7. $referer = http://www.php100.net/down/redirect.php?x=downurl&id=39&urlid=65;    // Referer  
  8. $port    = 80; 
  9.  
  10. $re = fsockopen($server, $port, $errno, $errstr, 30);  
  11. if (!$re){  
  12.    echo "<h1>無法連接遠程服務器</h1><h3>$errstr ($errno)</h3/> ";  
  13. }   
  14. else {  
  15.  $strhead = "GET $target HTTP/1.1 ";  
  16.  $strhead .= "Host: $host ";  
  17.  //$strhead .= "Cookie: PHPSESSIONIDSQTBQSDA=DFCAPKLBBFICDAFMHNKIGKEG ";  
  18.  $strhead .= "Referer: $referer ";  
  19.  $strhead .= "Connection: Close ";
  20.  
  21.  fwrite($re, $strhead);  
  22.  while (!feof($re)){  
  23.   echo fgets($re, 128);  
  24.  }  
  25.  fclose($re);  
  26. }  
  27.  

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved