CVE-2026-82485
Received Received - Intake

SQL Injection in Sales and Inventory System 1.0

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

Publication date: 2026-08-30

Last updated on: 2026-08-30

Assigner: VulDB

Description

A vulnerability has been found in itsourcecode Sales and Inventory System 1.0. Affected by this vulnerability is an unknown functionality of the file /pages/pro_edit.php. Such manipulation of the argument ID leads to sql injection. The attack may be launched remotely. The exploit has been disclosed to the public and may be used.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

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

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
itsourcecode sales_and_inventory_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

This vulnerability is a SQL injection flaw in the Sales and Inventory System 1.0 by itsourcecode. It exists in the /pages/pro_edit.php file where the 'ID' parameter is not properly sanitized. Attackers can inject malicious SQL code to manipulate the database, potentially leading to unauthorized access or data breaches.

Detection Guidance

To detect this SQL injection vulnerability, monitor HTTP requests to /pages/pro_edit.php for unusual parameters, especially the 'id' argument. Use tools like sqlmap to test for SQLi by sending crafted requests with payloads such as 'id=1' AND 1=1-- or 'id=1' AND 1=2--. Check server logs for errors indicating SQL syntax issues.

  • Use sqlmap: sqlmap -u "http://target.com/pages/pro_edit.php?id=1" --batch --dbs
Impact Analysis

This vulnerability allows remote attackers to execute arbitrary SQL commands by exploiting the unvalidated 'ID' parameter. This can result in unauthorized data access, data manipulation, deletion of records, or even full system compromise if database permissions are high.

Compliance Impact

This SQL injection vulnerability can lead to unauthorized data access or leakage, which directly violates GDPR's data protection requirements and HIPAA's safeguards for protected health information. Non-compliance may result in legal penalties, fines, or reputational damage.

Mitigation Strategies

Immediately update the application to use prepared statements for all database queries. Validate and sanitize all user inputs, particularly the 'id' parameter. Restrict database user permissions to the minimum required. Apply input validation to ensure only expected values are processed.

  • Replace dynamic SQL queries with parameterized queries or stored procedures.

Chat Assistant

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

EPSS Chart