php fsockopen伪造post与get方法的详解
php fsockopen伪造post与get方法的详解
发布时间:2016-12-29 来源:查字典编辑
摘要:fsockopen伪造post和get方法哦,如果你正在找伪造post和get方法的php处理代码这款不错哦。复制代码代码如下:

fsockopen 伪造 post和get方法哦,如果你正在找 伪造 post和get方法的php处理代码这款不错哦。

复制代码 代码如下:

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

}

}

?>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类