微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

php fsockopen伪造post与get方法的详解

fsockopen 伪造 post和get方法哦,如果你正在找 伪造 post和get方法PHP处理代码这款不错哦。
<div class="codetitle"><a style="CURSOR: pointer" data="94227" class="copybut" id="copybut94227" onclick="doCopy('code94227')"> 代码如下:

<div class="codebody" id="code94227">
<?PHP
//fsocket模拟post提交
$purl = "http://localhost/netPHP/test2.PHP?uu=rrrrrrrrrrrr";
print_r(parse_url($url));
sock_post($purl,"uu=55555555555555555");
//fsocket模拟get提交
function sock_get($url,$query)
{
$info = parse_url($url);
$fp = fsockopen($info["host"],80,$errno,$errstr,3);
$head = "GET ".$info['path']."?".$info["query"]." HTTP/1.0rn";
$head .= "Host: ".$info['host']."rn";
$head .= "rn";
$write = fputs($fp,$head);
while (!feof($fp))
{
$line = fread($fp,4096);
echo $line;
}
}
sock_post($purl,"uu=rrrrrrrrrrrrrrrr");
function sock_post($url,3);
$head = "POST ".$info['path']."?".$info["query"]." HTTP/1.0rn";
$head .= "Host: ".$info['host']."rn";
$head .= "Referer: http://".$info['host'].$info['path']."rn";
$head .= "Content-type: application/x-www-form-urlencodedrn";
$head .= "Content-Length: ".strlen(trim($query))."rn";
$head .= "rn";
$head .= trim($query);
$write = fputs($fp,4096);
echo $line;
}
}
?>

原文地址:https://www.jb51.cc/php/26267.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐