CVE-2025-11094
BaseFortify
Publication date: 2025-09-28
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 |
|---|---|---|
| fabian | e-commerce_site | 1.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?
This vulnerability is a critical SQL injection flaw in the code-projects E-Commerce Website version 1.0, specifically in the file /pages/admin_product_details.php. It occurs because the 'prod_id' parameter is not properly validated or neutralized, allowing attackers to inject malicious SQL commands remotely without authentication. This can lead to unauthorized execution of arbitrary SQL queries against the database. [1, 2]
How can this vulnerability impact me? :
Exploitation of this vulnerability can allow attackers to access the database without authorization, enabling them to retrieve, modify, or delete sensitive data. This compromises the confidentiality, integrity, and availability of the system, potentially leading to data breaches, loss of data, and disruption of services. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable file /pages/admin_product_details.php and testing the prod_id parameter for SQL injection. One method is to use Google dorking with the query 'inurl:pages/admin_product_details.php' to locate potentially vulnerable targets. For direct testing, you can use tools like sqlmap or manual curl commands to inject SQL payloads into the prod_id parameter and observe the response for SQL errors or unexpected behavior. Example curl command: curl 'http://target-site/pages/admin_product_details.php?prod_id=1' and then try injecting SQL payloads such as '1 OR 1=1'. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected component with an alternative product, as no known mitigations or countermeasures have been identified. Additionally, restricting access to the vulnerable page, implementing web application firewalls (WAF) to detect and block SQL injection attempts, and monitoring for exploitation attempts are recommended until a secure patch or update is available. [1]