Simple Pizza Ordering System, SQL Injection, CVE-2025-13323 (MEDIUM)

Listen to this Post

How the mentioned CVE works:

The vulnerability CVE-2025-13323 exists within the `listorder.php` file of the Simple Pizza Ordering System. The application fails to properly sanitize user-supplied input in the ‘ID’ parameter. An attacker can send a specially crafted HTTP request containing malicious SQL code within this parameter. Because the input is concatenated directly into a SQL query without validation or parameterization, the database executes the unintended commands. This allows the attacker to read, modify, or delete sensitive information from the underlying database, such as order details or user data. The attack is remotely exploitable and requires no authentication, making it accessible to any attacker on the network.
Platform: Simple Pizza Ordering System
Version: 1.0
Vulnerability: SQL Injection
Severity: Medium
date: 11/17/2025

Prediction: Patch expected 12/15/2025

What Undercode Say:

`curl -s “http://target/listorder.php?ID=1′ OR ‘1’=’1″`
`sqlmap -u “http://target/listorder.php?ID=1” –dbs`

`1′ UNION SELECT 1,user(),version()– -`

How Exploit:

Remote unauthenticated attackers append SQL commands like `’ UNION SELECT username, password FROM users–` to the `ID` parameter in HTTP GET requests, extracting arbitrary data from the database.

Protection from this CVE:

Apply vendor patch.

Use parameterized queries.

Implement input sanitization.

Deploy a WAF.

Impact:

Unauthorized database access.

Data theft and manipulation.

Complete compromise of database.

🎯Let’s Practice Exploiting & Learn Patching For Free:

Sources:

Reported By: nvd.nist.gov
Extra Source Hub:
Undercode

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow DailyCVE & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin Featured Image

Scroll to Top