CVE-2026-82613
Received Received - Intake

SQL Injection in Online Medicine Delivery System

Vulnerability report for CVE-2026-82613, 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 vulnerability was detected in itsourcecode Online Medicine Delivery System 1.0. This affects the function loadResultList of the file /index.php?q=product of the component Product Search Interface. Performing a manipulation of the argument Search results in sql injection. The attack may be initiated remotely. The exploit is now public 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-82613 is a SQL injection vulnerability in the Online Medicine Delivery System 1.0. It affects the product search function at /index.php?q=product where the 'Search' parameter is directly used in a SQL LIKE clause without proper sanitization. Attackers can inject malicious SQL queries to access sensitive data like user passwords or customer information.

Detection Guidance

To detect this SQL injection vulnerability, test the product search parameter in the Online Medicine Delivery System. Send a request to /index.php?q=product with a payload like ' OR 1=1 -- in the search field. If the system returns unexpected results or errors, it may be vulnerable. Use tools like SQLmap with: sqlmap -u "http://target/index.php?q=product&Search=test" --data="Search=test" --batch.

Check for error messages in responses when injecting single quotes or SQL keywords. Monitor database logs for unusual queries. Verify if the 'search' parameter is reflected in responses without sanitization.

Impact Analysis

This vulnerability allows remote attackers to execute arbitrary SQL commands. They could steal sensitive data such as user credentials, customer records, or order details. Since no authentication is required, anyone can exploit it. Attackers might also manipulate data or disrupt system operations.

Compliance Impact

This vulnerability likely violates GDPR and HIPAA due to unauthorized data access. GDPR requires protecting personal data, and HIPAA mandates safeguarding health information. A breach could lead to legal penalties, fines, and reputational damage for organizations handling sensitive data.

Mitigation Strategies

Immediately update the application to use parameterized queries for the search parameter instead of direct string concatenation. Implement strict input validation to allow only alphanumeric characters in the search field.

Apply a web application firewall (WAF) to filter malicious SQL injection attempts. Temporarily disable the vulnerable search functionality if a patch is unavailable. Regularly audit code for similar vulnerabilities in other parameters.

Chat Assistant

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

EPSS Chart