CVE-2025-10251
BaseFortify
Publication date: 2025-09-11
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 |
|---|---|---|
| foxcms | foxcms | to 1.24 (inc) |
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-10251 is an SQL injection vulnerability in FoxCMS version 1.24, specifically in the batchCope function of the /app/admin/controller/Images.php file. The vulnerability occurs because the 'ids' parameter received from the frontend is not properly sanitized or validated before being used in an SQL query. This allows an attacker to inject arbitrary SQL code remotely, potentially manipulating the backend database. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely execute arbitrary SQL commands on the backend database of FoxCMS. This can lead to unauthorized access, modification, or deletion of data, compromising the confidentiality, integrity, and availability of the system. Exploitation is straightforward due to a public proof-of-concept, and no authentication is required to launch the attack. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted payloads to the vulnerable endpoint /admin3953/images/batchCope.html, specifically targeting the 'ids' parameter. For example, testing with payloads like 'ids=62) and 1=1--+' (which returns a normal response) versus 'ids=62) and 1=2--+' (which causes failure) can confirm SQL injection. Additionally, using sqlmap with a captured POST request file is effective. A sample command is: python sqlmap.py -r 1.txt --dbs, where '1.txt' contains the POST request to the vulnerable endpoint with the 'ids' parameter. [1]
What immediate steps should I take to mitigate this vulnerability?
No vendor response or official mitigation measures are available. Immediate steps include avoiding use of FoxCMS version 1.24 or earlier, replacing FoxCMS with an alternative product, and restricting access to the vulnerable endpoint if possible. Since the vulnerability allows remote exploitation without authentication, limiting network exposure and monitoring for suspicious activity targeting /admin3953/images/batchCope.html is recommended. [3]