网站地图    收藏   

主页 > php专栏 > php应用 >

php fsockopen 伪造 post和get方法 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] ?php//fsocket模拟post提交$purl=http://localhost/netphp/test2.php?uu=rrrrrrrrrrrr;print_r(parse_url($url));sock_post($purl,uu=5......

php fsockopen 伪造 post和get方法

  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. ?>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论