php fsockopen 伪造 post和get方法_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, $query)
{
$info = parse_url($url);
$fp = fsockopen($info["host"], 80, $errno, $errstr, 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, $head);
while (!feof($fp))
{
$line = fread($fp,4096);
echo $line;
}
}
?>
上一篇: 火狐和其他浏览器显示不同,求解决_html/css_WEB-ITnose
下一篇: git相关
推荐阅读
-
PHP使用stream_context_create()模拟POST/GET请求的方法
-
php发送get、post请求的6种方法简明总结
-
Ubuntu彻底卸载MySQL、Apache2和Php的方法教程
-
php自定义类fsocket模拟post或get请求的方法
-
使用PHP Socket 编程模拟Http post和get请求
-
php中$_REQUEST、$_POST、$_GET的区别和联系小结
-
php中$_GET与$_POST过滤sql注入的方法
-
PHP循环获取GET和POST值的代码
-
php post json参数的传递和接收处理方法
-
PHP的curl实现get,post和cookie(实例介绍)