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
CVE-2025-69985 — CVE-2025-69985: FUXA ≤1.2.8 Auth Bypass + RCE via /api/runscript | Kitploit
Tools/GitHubGitHub/joshuavanderpoll/cve-2025-69985
Vulnerability AnalysisExploitationSCADA/ICS SecurityWeb Application ExploitationAuthenticationRemote Access Tool
GitHubjoshuavanderpoll/cve-2025-69985

CVE-2025-69985

CVE-2025-69985: FUXA ≤1.2.8 Auth Bypass + RCE via /api/runscript

View Repository
25 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
Website

FUXA ≤ 1.2.8 Auth Bypass + RCE (CVE-2025-69985)

Python

📜 Description

This Python exploit targets CVE-2025-69985, a critical authentication bypass vulnerability in FUXA (web-based SCADA/HMI software) versions ≤ 1.2.8. By sending a crafted JSON payload with embedded Node.js code to the unprotected /api/runscript endpoint, it achieves remote command execution as the FUXA process — capturing full stdout/stderr synchronously in the response.

🛠️ Installation

[!NOTE] To ensure a clean and isolated environment for the project dependencies, it's recommended to use Python's venv module.

OSX/Linux

root@kitploit:~
git clone https://github.com/joshuavanderpoll/CVE-2025-69985.git
cd CVE-2025-69985
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt

Windows

root@kitploit:~
git clone https://github.com/joshuavanderpoll/CVE-2025-69985.git
cd CVE-2025-69985
python -m venv .venv 
.venv\Scripts\activate
pip3 install -r requirements.txt

⚙️ Usage

root@kitploit:~
python3 CVE-2025-69985.py -u http://localhost:1881/ -c whoami

 Target : http://localhost:1881
 Command: whoami

[*] Preparing payload → executing: whoami
[*] Sending exploit request to /api/runscript ...
[*] Response status: 200
[+] Command executed successfully (CVE-2025-69985 bypass)!

=== COMMAND OUTPUT ===
"root\n"
======================


======================================================================
 Exploit completed!.
======================================================================

🐋 Docker PoC

root@kitploit:~
cd docker/
docker compose down
docker compose up -d
# You can test at --url http://127.0.0.1:1881/

💻 Example

Execute PoC

📢 Disclaimer

This tool is provided for educational and research purposes only. The creator assumes no responsibility for any misuse or damage caused by the tool.

Download Tool