CVE-2025-8806
BaseFortify
Publication date: 2025-08-10
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 |
|---|---|---|
| zhilink | adp_application_developer_platform | 1.0.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-8806 is a critical SQL injection vulnerability in version 1.0.0 of the ADP Application Developer Platform by zhilink 智互联(深圳)科技有限公司. It occurs in the /adpweb/a/sys/office/treeData endpoint, specifically through the extId parameter. An attacker can manipulate this parameter to inject malicious SQL commands remotely, potentially leading to unauthorized data access or further compromise of the system. The vulnerability has been publicly disclosed and a proof-of-concept exploit exists. [1, 2]
How can this vulnerability impact me? :
This vulnerability allows remote attackers to execute arbitrary SQL commands on the affected system without authentication. This can lead to unauthorized data leakage, modification, or deletion, compromising the confidentiality, integrity, and availability of the system. Exploitation may result in significant security breaches and operational disruptions for users of the ADP Application Developer Platform version 1.0.0. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted HTTP GET requests to the endpoint /adpweb/a/sys/office/treeData with a malicious payload in the extId parameter to test for SQL injection. For example, you can use curl to send a request like: curl -i -s -k -X GET "http://<target>/adpweb/a/sys/office/treeData?companyid=&extId='and/**/extractvalue(1,concat(char(126),md5(1009983723)))and'&isAll=&keywords=111&module=&t=1705660829107&type=1" -H "User-Agent: Mozilla/5.0" -H "X-Requested-With: XMLHttpRequest" -b "<cookie>" If the response contains the MD5 hash of 1009983723 (e.g., 3e7c9e3a1f7e7e7e7e7e7e7e7e7e7e7e), it confirms the presence of the SQL injection vulnerability. This test requires valid authentication cookies if the application requires login. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable endpoint /adpweb/a/sys/office/treeData, applying web application firewall (WAF) rules to detect and block SQL injection attempts targeting the extId parameter, and monitoring logs for suspicious requests. Since no vendor patch or fix is available and the vendor did not respond, consider replacing the affected ADP Application Developer Platform version 1.0.0 with a secure alternative. Additionally, avoid using default credentials and enforce strong authentication to reduce risk. [2]