CVE-2026-2897

2.4 LOW

📋 TL;DR

This is a cross-site scripting (XSS) vulnerability in funadmin's backend interface that allows attackers to inject malicious scripts into the application. The vulnerability affects funadmin versions up to 7.1.0-rc4 and can be exploited remotely without authentication. Organizations using vulnerable versions of funadmin are at risk of having their backend interfaces compromised.

💻 Affected Systems

Products:
  • funadmin
Versions: up to 7.1.0-rc4
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects the backend interface component at app/backend/view/index/index.html

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could steal administrator session cookies, perform actions as administrators, deface the backend interface, or redirect users to malicious sites.

🟠

Likely Case

Session hijacking of backend administrators leading to unauthorized access and potential data manipulation.

🟢

If Mitigated

Limited impact if proper input validation and output encoding are implemented, though the vulnerability still exists.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploit details are publicly available and the vulnerability requires minimal technical skill to exploit.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Unknown

Vendor Advisory: None available

Restart Required: No

Instructions:

No official patch available. Upgrade to a version beyond 7.1.0-rc4 if the vendor releases a fix. Monitor vendor communications for updates.

🔧 Temporary Workarounds

Input Validation and Sanitization

all

Implement server-side input validation and output encoding for the Value parameter in the backend interface.

Content Security Policy

all

Implement a strict Content Security Policy (CSP) to mitigate XSS impact.

🧯 If You Can't Patch

  • Restrict access to the backend interface using network controls or authentication mechanisms.
  • Implement a web application firewall (WAF) with XSS protection rules.

🔍 How to Verify

Check if Vulnerable:

Check if funadmin version is 7.1.0-rc4 or earlier. Test the backend interface for XSS vulnerabilities in the Value parameter.

Check Version:

Check funadmin version configuration files or admin panel for version information.

Verify Fix Applied:

Verify that input to the Value parameter is properly sanitized and that XSS payloads are neutralized.

📡 Detection & Monitoring

Log Indicators:

  • Unusual requests to app/backend/view/index/index.html with script tags or JavaScript in parameters
  • Multiple failed login attempts followed by successful access

Network Indicators:

  • HTTP requests containing script tags or JavaScript in the Value parameter
  • Unusual outbound connections from the funadmin server

SIEM Query:

source="funadmin" AND (url="*index.html*" AND (param="*<script>*" OR param="*javascript:*"))

🔗 References

📤 Share & Export