CVE-2026-0579
SQL Injection in code-projects Reservation System POST Handler
Publication date: 2026-01-04
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 |
|---|---|---|
| code-projects | online_product_reservation_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
Can you explain this vulnerability to me?
This vulnerability is a critical SQL injection flaw in the code-projects Online Product Reservation System version 1.0. It exists in the POST parameter handler of the file /handgunner-administrator/edit.php, specifically affecting the parameters prod_id, name, price, model, and serial. The application improperly handles these inputs by directly concatenating user-supplied data into SQL queries without validation or sanitization, allowing an attacker to inject malicious SQL commands remotely without authentication. [2, 3]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been documented for this vulnerability. The suggested immediate step is to replace the vulnerable product with an alternative solution. Until a patch or fix is available, restricting access to the vulnerable endpoint and monitoring for exploitation attempts may help reduce risk. [3]
How can this vulnerability impact me? :
This vulnerability can allow an attacker to execute arbitrary SQL commands on the database, which can lead to unauthorized extraction of sensitive data, modification of product information, and compromise of the system's confidentiality, integrity, and availability. Since the exploit can be launched remotely without authentication, it poses a high risk of unauthorized access and data manipulation. [2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by identifying access attempts to the vulnerable script using the Google dork query `inurl:handgunner-administrator/edit.php`. Monitoring web server logs for POST requests to `/handgunner-administrator/edit.php` with parameters such as prod_id, name, price, model, or serial may indicate exploitation attempts. Additionally, you can use network monitoring tools to detect unusual SQL injection patterns in requests targeting this endpoint. Specific commands are not provided, but searching logs with tools like grep for the URL and parameters can help detect exploitation attempts. [3]