CVE-2026-4470
SQL Injection in itsourcecode Frozen Foods /admin_edit_menu.php
Publication date: 2026-03-20
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| adonesevangelista | online_frozen_foods_ordering_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include:
- Implement prepared statements with parameter binding to separate SQL code from user inputs, preventing injection.
- Enforce strict input validation and filtering to ensure inputs conform to expected formats.
- Minimize database user privileges by avoiding use of high-privilege accounts (such as root or admin) for routine database operations.
- Conduct regular security audits of code and systems to detect and address vulnerabilities promptly.
Can you explain this vulnerability to me?
CVE-2026-4470 is a critical SQL injection vulnerability found in version 1.0 of the Online Frozen Foods Ordering System, specifically in the file /admin/admin_edit_menu.php. The issue arises because the product_name parameter is not properly validated or sanitized before being used in SQL queries. This allows attackers to inject malicious SQL code remotely without needing authentication or authorization.
Attackers can exploit this flaw using various SQL injection techniques such as Boolean-based blind, error-based, time-based blind, and UNION-based injections to manipulate database queries.
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to unauthorized access to the database, allowing attackers to extract sensitive information, alter or delete data, and potentially gain full control over the system.
This can result in service disruptions, loss of data integrity, and compromise of business continuity.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'This SQL injection vulnerability can be detected by testing the vulnerable parameter `product_name` in the file `/admin/admin_edit_menu.php` for injection flaws.'}, {'type': 'list_item', 'content': 'Use sqlmap, an automated SQL injection tool, to test the parameter for exploitable injection points.'}, {'type': 'list_item', 'content': "Perform manual testing with payloads such as Boolean-based blind SQL injection: `product_name=CHEESE HOTDOG' AND 2618=2618 AND 'pgVL'='pgVL`."}, {'type': 'list_item', 'content': 'Try error-based SQL injection payloads targeting MySQL β₯ 5.0 to observe database error messages.'}, {'type': 'list_item', 'content': "Use time-based blind SQL injection payloads like `product_name=CHEESE HOTDOG' AND (SELECT SLEEP(5))` to detect delays indicating injection."}, {'type': 'list_item', 'content': "Attempt UNION-based SQL injection payloads to retrieve data from multiple columns, e.g., `product_name=-7761' UNION ALL SELECT NULL,NULL,NULL,NULL,NULL,CONCAT(...)`."}] [1]