CVE-2025-11436

6.3 MEDIUM

📋 TL;DR

This vulnerability in JhumanJ OpnForm up to version 1.9.3 allows remote attackers to upload arbitrary files without restrictions via the /answer endpoint. This could lead to server compromise, data theft, or malware deployment. All OpnForm installations up to 1.9.3 are affected.

💻 Affected Systems

Products:
  • JhumanJ OpnForm
Versions: All versions up to and including 1.9.3
Operating Systems: Any OS running OpnForm
Default Config Vulnerable: ⚠️ Yes
Notes: All default installations are vulnerable; no special configuration required

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete server takeover through webshell upload leading to data exfiltration, ransomware deployment, or use as attack platform

🟠

Likely Case

Malicious file upload leading to defacement, data manipulation, or limited server access

🟢

If Mitigated

File upload attempts blocked or logged with no successful exploitation

🌐 Internet-Facing: HIGH - Remote exploitation possible without authentication
🏢 Internal Only: MEDIUM - Still exploitable but requires internal network access

🎯 Exploit Status

Public PoC: ⚠️ Yes
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Public exploit details available; manipulation of /answer endpoint leads to unrestricted upload

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after commit 95c3e23856465d202e6aec10bdb6ee0688b5305a

Vendor Advisory: https://github.com/JhumanJ/OpnForm/pull/900/commits/95c3e23856465d202e6aec10bdb6ee0688b5305a

Restart Required: No

Instructions:

1. Update OpnForm to latest version 2. Apply commit 95c3e23856465d202e6aec10bdb6ee0688b5305a 3. Verify file upload restrictions are properly implemented

🔧 Temporary Workarounds

Block /answer endpoint

all

Temporarily block access to vulnerable endpoint via web server configuration

# For Apache: RewriteRule ^/answer - [F]
# For Nginx: location /answer { deny all; }

Implement file upload restrictions

all

Add server-side file type validation and size limits

# Configure web server to restrict uploads
# Example: Limit file types and sizes in application config

🧯 If You Can't Patch

  • Implement WAF rules to block malicious file upload patterns
  • Monitor and alert on file upload attempts to /answer endpoint

🔍 How to Verify

Check if Vulnerable:

Check if OpnForm version is ≤1.9.3 and test file upload to /answer endpoint

Check Version:

Check OpnForm version in application configuration or package manager

Verify Fix Applied:

Attempt file upload to /answer endpoint; should be rejected with proper validation

📡 Detection & Monitoring

Log Indicators:

  • Unusual file uploads to /answer endpoint
  • Large or suspicious file uploads
  • Failed file validation attempts

Network Indicators:

  • POST requests to /answer with file uploads
  • Unusual file types being uploaded

SIEM Query:

source="web_logs" AND uri="/answer" AND method="POST" AND (file_upload="true" OR content_type="multipart/form-data")

🔗 References

📤 Share & Export