CVE-2026-2896
Improper Authorization in Funadmin setConfig Allows Remote Exploit
Publication date: 2026-02-22
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| funadmin | funadmin | to 7.1.0 (exc) |
| funadmin | funadmin | 7.1.0 |
| funadmin | funadmin | 7.1.0 |
| funadmin | funadmin | 7.1.0 |
| funadmin | funadmin | 7.1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-285 | The product does not perform or incorrectly performs an authorization check when an actor attempts to access a resource or perform an action. |
| CWE-266 | A product incorrectly assigns a privilege to a particular actor, creating an unintended sphere of control for that actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2026-2896 is a vulnerability in funadmin up to version 7.1.0-rc4, specifically in the setConfig function of the file app/backend/controller/Ajax.php. This function lacks proper authentication and authorization checks, allowing an attacker to remotely invoke it without logging in.
As a result, an attacker can send crafted malicious requests to arbitrarily modify system configuration parameters, leading to unauthorized access and potential system compromise.
The vulnerability is categorized under CWE-285 (Improper Authorization) and CWE-862 (Missing Authorization), and it can be exploited remotely without any user interaction.
How can this vulnerability impact me? :
This vulnerability allows an attacker to remotely modify system configuration settings without authentication, which can lead to unauthorized access and compromise of the affected system.
The impact includes potential breaches of confidentiality, integrity, and availability of the system, as attackers can manipulate critical configuration parameters.
Because exploitation is straightforward and does not require authentication, the risk of attack is high, and the system could be fully compromised.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This vulnerability can be detected by checking for the presence of the vulnerable endpoint app/backend/controller/Ajax.php, specifically the setConfig function, which lacks proper authorization.'}, {'type': 'paragraph', 'content': 'One method to identify potentially vulnerable systems is to use Google dorking with queries such as: inurl:app/backend/controller/Ajax.php.'}, {'type': 'paragraph', 'content': 'On your system or network, you can monitor for suspicious HTTP requests targeting the setConfig function without authentication, which may indicate exploitation attempts.'}, {'type': 'paragraph', 'content': 'While no specific detection commands are provided, you can use tools like curl or wget to test if the endpoint is accessible without authentication, for example:'}, {'type': 'list_item', 'content': "curl -v http://[target]/app/backend/controller/Ajax.php -d 'action=setConfig¶m=value'"}, {'type': 'list_item', 'content': 'Observe if the request is accepted and configuration changes are allowed without authentication.'}] [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable endpoint app/backend/controller/Ajax.php, especially the setConfig function, by implementing proper authentication and authorization controls.
If possible, block or filter incoming requests to this endpoint from untrusted networks using firewall rules or web application firewalls.
Since the vendor has not provided any patches or mitigations, consider replacing the affected funadmin version 7.1.0-rc4 with a secure alternative or an updated version once available.
Monitor logs for any unauthorized access attempts and respond accordingly.