CVE-2026-5017
7.3code-projects · Simple Food Order System
A SQL injection vulnerability in the Simple Food Order System 1.0 allows unauthenticated remote attackers to execute arbitrary database queries via the status parameter in all-tickets.php.
Executive summary
An unauthenticated SQL injection vulnerability in the Simple Food Order System 1.0 poses a critical risk of full database compromise and unauthorized data access.
Vulnerability
This is a SQL injection vulnerability (CWE-89) located in the all-tickets.php file. The application fails to properly sanitize the status parameter before using it in database queries, allowing an unauthenticated remote attacker to inject malicious SQL commands.
Business impact
Successful exploitation of this flaw allows attackers to bypass authentication and execute arbitrary commands against the underlying database. This can lead to the exfiltration of sensitive information, unauthorized modification or deletion of data, and potential full system compromise, resulting in significant business disruption and reputational damage. Given the CVSS score of 7.3, this vulnerability represents a high-severity risk that requires immediate attention.
Remediation
Immediate Action: As no official vendor patch is currently available, administrators should immediately restrict network access to the application or take the service offline until a fix is implemented. Developers must refactor the affected code to use prepared statements with parameterized queries instead of direct input concatenation.
Proactive Monitoring: Monitor web server access logs for anomalous GET requests containing SQL syntax, such as UNION, SLEEP, or boolean-based injection patterns targeting the all-tickets.php endpoint.
Compensating Controls: Deploy a Web Application Firewall (WAF) with rules configured to detect and block common SQL injection payloads in the status parameter to provide a layer of virtual patching.
Exploitation status
Public Exploit Available: Yes — a published proof-of-concept exists, as documented in the security researcher's write-up on GitHub.
Analyst recommendation
The presence of a public proof-of-concept combined with the lack of authentication requirements makes this a high-priority risk. Organizations currently running Simple Food Order System 1.0 must prioritize isolating these instances from public access and implementing strict input validation or WAF protections to mitigate the threat of database exploitation until a definitive security update is released.
More code-projects CVEs
Sources
Originally found and disclosed by XuYue (VulDB User), per the CVE Program record.