CVE-2026-14713
Received Received - Intake

SQL Injection in SourceCodester Pizzafy E-Commerce System

Vulnerability report for CVE-2026-14713, 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 SourceCodester Pizzafy E-Commerce System 1.0. This vulnerability affects unknown code of the file /admin/ajax.php?action=confirm_order. The manipulation of the argument ID 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-05
Last Modified
2026-07-05
Generated
2026-07-05
AI Q&A
2026-07-05
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
sourcecodester pizzafy_e-commerce_system 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

This vulnerability is a SQL injection flaw found in the Pizzafy E-Commerce System version 1.0, specifically in the file /admin/ajax.php?action=confirm_order. It occurs because the 'id' parameter in the confirm_order() function is not properly validated, allowing an attacker to inject malicious SQL code.

An attacker can exploit this by sending specially crafted input, such as 'id=1 and sleep(5)', via a POST request to the vulnerable endpoint, which can manipulate the database queries executed by the system.

Impact Analysis

Exploiting this SQL injection vulnerability can lead to unauthorized access to the database, allowing attackers to view, modify, or delete sensitive data.

Attackers may also gain full control over the system without needing to log in or have authorization, potentially leading to data tampering, leakage of sensitive information, and disruption of service.

Detection Guidance

This SQL injection vulnerability can be detected by sending crafted payloads to the vulnerable endpoint and observing the response or behavior of the system.

  • Send a POST request to /Pizzafy/admin/ajax.php?action=confirm_order with the parameter id set to a payload like '1 and sleep(5)'. For example, using curl:
  • curl -X POST -d "id=1%20and%20sleep(5)" https://targetsite/Pizzafy/admin/ajax.php?action=confirm_order

If the response is delayed by the sleep time, it indicates the presence of a SQL injection vulnerability.

Mitigation Strategies

Immediate mitigation steps include:

  • Implement prepared statements to safely handle SQL queries and avoid direct injection.
  • Validate and sanitize all user inputs, especially the 'id' parameter in the confirm_order function.
  • Minimize database user permissions to limit the impact of a potential exploit.
  • Conduct regular security audits and code reviews to detect and fix similar vulnerabilities.

Chat Assistant

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

EPSS Chart