CVE-2025-11596
BaseFortify
Publication date: 2025-10-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 |
|---|---|---|
| fabian | e-commerce_website | 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 SQL injection flaw in the code-projects E-Commerce Website 1.0, specifically in the file /pages/delete_order_details.php. It occurs because the 'order_id' parameter is not properly validated or neutralized, allowing an attacker to inject malicious SQL code. This can be exploited remotely without authentication to manipulate the backend database by executing unauthorized SQL commands. [2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can lead to unauthorized access to the database, allowing attackers to modify or delete data and retrieve sensitive information. It impacts the confidentiality, integrity, and availability of the system, potentially causing data breaches, loss of data, and disruption of services. [2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by identifying the presence of the vulnerable file `/pages/delete_order_details.php` in the code-projects E-Commerce Website 1.0. One method is to use Google dorking with the query `inurl:pages/delete_order_details.php` to find potentially vulnerable targets. Additionally, network or system detection can involve monitoring for unusual or malicious SQL injection attempts targeting the `order_id` parameter in requests to this file. Specific commands to detect the vulnerable endpoint could include using curl or wget to test the URL, for example: `curl -v http://targetsite.com/pages/delete_order_details.php?order_id=1' OR '1'='1` to check for SQL injection responses. [3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected software with an alternative product, as no known countermeasures or mitigations have been documented. Additionally, restricting access to the vulnerable endpoint, applying web application firewalls (WAF) to block malicious SQL injection attempts, and validating and sanitizing the `order_id` parameter in the application code can help reduce risk until a secure version or patch is available. [3, 2]