当前位置:首页 > PHP教程 > php高级应用 > 列表

php fsockopen 伪造 post和get方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-09 17:16:02 浏览: 评论:0 
  1. <?php 
  2. //fsocket模拟post提交 
  3. $purl = "http://localhost/netphp/test2.php?uu=rrrrrrrrrrrr"
  4. print_r(parse_url($url)); 
  5. sock_post($purl,"uu=55555555555555555"); 
  6.  
  7. //fsocket模拟get提交 
  8. function sock_get($url$query
  9.    $info = parse_url($url); 
  10.    $fp = fsockopen($info["host"], 80, $errno$errstr, 3); 
  11.    $head = "GET ".$info['path']."?".$info["query"]." HTTP/1.0 "
  12.    $head .= "Host: ".$info['host']." "
  13.    $head .= " "
  14.    $write = fputs($fp$head); 
  15.    while (!feof($fp)) 
  16.    { 
  17.     $line = fread($fp,4096); 
  18.     echo $line
  19.    } 
  20. sock_post($purl,"uu=rrrrrrrrrrrrrrrr"); 
  21.  
  22. function sock_post($url$query
  23.    $info = parse_url($url); 
  24.    $fp = fsockopen($info["host"], 80, $errno$errstr, 3); 
  25.    $head = "POST ".$info['path']."?".$info["query"]." HTTP/1.0 "
  26.    $head .= "Host: ".$info['host']." "
  27.    $head .= "Referer: http://".$info['host'].$info['path']." "
  28.    $head .= "Content-type: application/x-www-form-urlencoded "
  29.    $head .= "Content-Length: ".strlen(trim($query))." "
  30.    $head .= " ";//开源代码phpfensi.com 
  31.    $head .= trim($query); 
  32.    $write = fputs($fp$head); 
  33.    while (!feof($fp)) 
  34.    { 
  35.     $line = fread($fp,4096); 
  36.     echo $line
  37.    } 
  38.  
  39. ?>

Tags: fsockopen 伪造 post方法

分享到: