CVE-2026-14767
Received Received - Intake

SQL Injection in CodeAstro Ecommerce Website

Vulnerability report for CVE-2026-14767, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-07-05

Last updated on: 2026-07-05

Assigner: VulDB

Description

A security flaw has been discovered in CodeAstro Ecommerce Website 1.0. This affects an unknown part of the file /ecommerce-website-php/customer/confirm.php of the component POST Parameter Handler. The manipulation of the argument invoice_no results in sql injection. The attack can be executed remotely. The exploit has been released to the public and may be used for attacks.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-07-05
Last Modified
2026-07-05
Generated
2026-07-06
AI Q&A
2026-07-05
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
codeastro ecommerce_website 1.0

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
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.
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.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

CVE-2026-14767 is a critical SQL injection vulnerability found in CodeAstro Ecommerce Website version 1.0. It exists in the /ecommerce-website-php/customer/confirm.php file, specifically in the invoice_no parameter of the payment confirmation form.

The vulnerability occurs because the invoice_no parameter is directly concatenated into SQL queries without proper sanitization or parameterized binding. This allows attackers to inject malicious SQL payloads remotely, even with low-privilege session access.

Attackers can exploit this flaw to execute arbitrary SQL commands, potentially extracting sensitive data, modifying or deleting data, or gaining full control over the system.

Impact Analysis

This vulnerability can have severe impacts including unauthorized access to sensitive information such as user credentials, orders, and payment details.

Attackers may modify or delete data, disrupt services, or cause denial of service conditions.

In the worst case, attackers could gain complete control over the affected system, leading to further exploitation or damage.

Detection Guidance

This vulnerability can be detected by testing the invoice_no parameter in the /ecommerce-website-php/customer/confirm.php file for SQL injection flaws. A common approach is to use automated tools like sqlmap to perform time-based blind SQL injection tests against this parameter.

  • Use sqlmap with a command similar to: sqlmap -u "http://targetsite/ecommerce-website-php/customer/confirm.php" --data="invoice_no=1" --time-sec=5 --technique=T
  • Monitor network traffic for suspicious SQL injection payloads targeting the invoice_no parameter.
Mitigation Strategies

Immediate mitigation steps include implementing prepared statements with parameter binding to prevent SQL injection, enforcing strict input validation on the invoice_no parameter, and applying the principle of least privilege for database accounts used by the application.

  • Replace direct concatenation of invoice_no in SQL queries with parameterized queries.
  • Validate and sanitize all user inputs, especially invoice_no, to allow only expected formats.
  • Limit database user permissions to only what is necessary for the application.
  • Conduct regular security audits and code reviews to identify and fix similar vulnerabilities.
Compliance Impact

The SQL injection vulnerability in CodeAstro Ecommerce Website 1.0 allows attackers to extract sensitive data such as user credentials, orders, and payment information. This exposure of sensitive personal and payment data can lead to non-compliance with data protection regulations like GDPR and HIPAA, which mandate the protection of personal and health-related information.

By enabling unauthorized access and potential modification or deletion of sensitive data, the vulnerability increases the risk of data breaches, which are subject to strict reporting requirements and penalties under these regulations.

Therefore, failure to address this vulnerability could result in violations of compliance obligations related to data confidentiality, integrity, and availability.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-14767. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart