CVE-2026-14799
Received Received - Intake

SQL Injection in CodeAstro Ecommerce Website

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

Publication date: 2026-07-06

Last updated on: 2026-07-06

Assigner: VulDB

Description

A security flaw has been discovered in CodeAstro Ecommerce Website 1.0. Impacted is an unknown function of the file /customer/my_account.php?my_wishlist. The manipulation of the argument delete_wishlist results in sql injection. The attack can be launched 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-06
Last Modified
2026-07-06
Generated
2026-07-06
AI Q&A
2026-07-06
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-14799 is a SQL injection vulnerability found in CodeAstro Ecommerce Website version 1.0. It occurs in the file /customer/my_account.php within the my_wishlist functionality. The vulnerability arises because the delete_wishlist parameter is not properly validated, allowing an attacker to inject malicious SQL code remotely.

This improper input validation can be exploited to manipulate the database queries executed by the application.

Impact Analysis

Exploiting this SQL injection vulnerability can lead to unauthorized access to the database, which may result in data leakage, data tampering, unauthorized system control, and disruption of services.

  • Unauthorized database access
  • Data leakage
  • Data tampering
  • Potential system control by attackers
  • Service disruption
Detection Guidance

This vulnerability can be detected by testing the `delete_wishlist` parameter in the URL `/customer/my_account.php?my_wishlist` for SQL injection flaws. A common approach is to use time-based blind SQL injection payloads to observe delays in the server response, indicating vulnerability.

  • Use curl or a web proxy tool to send requests with SQL injection payloads in the `delete_wishlist` parameter, for example: `curl "http://target/customer/my_account.php?my_wishlist&delete_wishlist=1' OR SLEEP(5)--` and observe if the response is delayed.
  • Use automated SQL injection detection tools such as sqlmap targeting the vulnerable parameter: `sqlmap -u "http://target/customer/my_account.php?my_wishlist&delete_wishlist=1" --risk=3 --level=5`.

Monitoring network traffic for unusual or malformed SQL queries targeting the `delete_wishlist` parameter can also help detect exploitation attempts.

Mitigation Strategies

Immediate mitigation steps include:

  • Implement prepared statements (parameterized queries) to handle the `delete_wishlist` parameter safely and prevent SQL injection.
  • Perform strict input validation and sanitization on the `delete_wishlist` parameter to ensure only expected values are accepted.
  • Minimize database user permissions to limit the impact of a potential SQL injection attack.
  • Conduct regular security audits and code reviews focusing on input handling and database interactions.

Additionally, monitor logs for suspicious activity related to the vulnerable parameter and consider applying any available patches or updates from the vendor.

Compliance Impact

The SQL injection vulnerability in CodeAstro Ecommerce Website 1.0 allows unauthorized database access, data leakage, and tampering. Such security flaws can lead to exposure or compromise of sensitive personal data, which may violate data protection regulations like GDPR and HIPAA that require safeguarding personal and health information.

Failure to protect against SQL injection attacks can result in non-compliance with these standards due to inadequate data security controls, potentially leading to legal penalties, loss of customer trust, and regulatory scrutiny.

Chat Assistant

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

EPSS Chart