CVE-2026-82612
Received Received - Intake

SQL Injection in Online Medicine Delivery System

Vulnerability report for CVE-2026-82612, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-31

Last updated on: 2026-08-31

Assigner: VulDB

Description

A security vulnerability has been detected in itsourcecode Online Medicine Delivery System 1.0. Affected by this issue is the function loadResultList of the file /index.php?q=single-item of the component Product Detail Page. Such manipulation of the argument ID leads to sql injection. The attack can be launched remotely. The exploit has been disclosed publicly and may be used.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-31
Last Modified
2026-08-31
Generated
2026-08-31
AI Q&A
2026-08-31
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
itsourcecode online_medicine_delivery_system 1.0

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions

Instant insights powered by AI
Executive Summary

CVE-2026-82612 is a SQL injection vulnerability in the Online Medicine Delivery System 1.0. It affects the product detail page at /index.php?q=single-item where the 'ID' parameter is not properly sanitized. This allows attackers to inject malicious SQL code into the query, potentially accessing or modifying the database without authentication.

Detection Guidance

To detect SQL injection vulnerabilities like CVE-2026-82612, test the 'id' parameter in the URL /index.php?q=single-item&id= with various payloads. Use tools like SQLmap with commands such as 'sqlmap -u "http://target/index.php?q=single-item&id=1" --batch --dbs' to automate detection. Manually test with payloads like ' OR 1=1 --, ' OR '1'='1, or time delays like 'id=1 AND SLEEP(5)' to observe responses.

Check server logs for unusual queries or errors. Look for patterns like multiple single quotes, semicolons, or SQL keywords (SELECT, UNION, DROP) in the 'id' parameter. Use browser developer tools to inspect requests for malformed inputs.

Impact Analysis

This vulnerability could allow attackers to extract sensitive data such as user passwords, customer information, and order details from the database. Since it is exploitable remotely without authentication, attackers could access or manipulate data without needing to log in.

Compliance Impact

This vulnerability likely violates GDPR and HIPAA due to unauthorized access to personal and medical data. GDPR requires protection of personal data, while HIPAA mandates safeguards for health information. A breach could result in legal penalties and reputational damage.

Mitigation Strategies

Immediately update the Online Medicine Delivery System to use parameterized queries instead of direct SQL string concatenation. Validate the 'id' parameter to ensure it is an integer using server-side checks. Apply input sanitization to strip or escape special characters like quotes and semicolons.

Restrict database user permissions to limit damage from potential SQL injection. Monitor network traffic for suspicious queries targeting the 'id' parameter. Consider deploying a web application firewall (WAF) to block known SQL injection patterns.

Chat Assistant

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

EPSS Chart