CVE-2026-11489
Deferred Deferred - Pending Action
SQL Injection in Online Music Site 1.0

Publication date: 2026-06-08

Last updated on: 2026-06-08

Assigner: VulDB

Description
A vulnerability was found in code-projects Online Music Site 1.0. This vulnerability affects unknown code of the file /Administrator/PHP/AdminDeleteAlbum.php. The manipulation of the argument ID results in sql injection. The attack may be performed from remote. The exploit has been made public and could be used.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-08
Last Modified
2026-06-08
Generated
2026-06-08
AI Q&A
2026-06-08
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Currently, no data is known.
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-11489 is a SQL injection vulnerability found in the Online Music Site 1.0 project, specifically in the AdminDeleteAlbum.php file. The vulnerability occurs because the 'id' parameter in the GET request is used directly in SQL queries without proper sanitization or validation. This allows an attacker to inject malicious SQL code remotely without requiring any login or authorization.

A proof-of-concept exploit demonstrates a time-based blind SQL injection using a payload that causes the database to delay its response, confirming the injection capability.

Impact Analysis

This vulnerability can lead to unauthorized access to the database, allowing attackers to leak sensitive data, tamper with data, gain control over the system, and disrupt services. Since the exploit requires no authentication, it poses a significant security risk.

Detection Guidance

This vulnerability can be detected by testing the 'id' parameter in the AdminDeleteAlbum.php file for SQL injection. A common method is to send specially crafted GET requests that include SQL injection payloads and observe the response or delay.

  • Use a time-based blind SQL injection payload such as: id=95' AND (SELECT 5352 FROM (SELECT(SLEEP(5)))fWHa)-- JxTG
  • Send a request like: http://[target]/Administrator/PHP/AdminDeleteAlbum.php?id=95' AND (SELECT 5352 FROM (SELECT(SLEEP(5)))fWHa)-- JxTG
  • If the response is delayed by approximately 5 seconds, it indicates the presence of the SQL injection vulnerability.

Automated tools like sqlmap can also be used to test the parameter for SQL injection.

Mitigation Strategies

Immediate mitigation steps include:

  • Implement prepared statements with parameter binding to prevent direct injection of user input into SQL queries.
  • Validate and filter all user inputs, especially the 'id' parameter, to ensure only expected values are accepted.
  • Minimize database user permissions to limit the impact of a potential SQL injection attack.
  • If possible, apply patches or updates provided by the software vendor addressing this vulnerability.
Compliance Impact

The SQL injection vulnerability in the AdminDeleteAlbum.php file allows unauthorized database access, data leakage, and data tampering. Such unauthorized access and potential exposure or alteration of sensitive data can lead to non-compliance with data protection regulations like GDPR and HIPAA, which mandate the protection of personal and sensitive information.

Because the vulnerability enables attackers to access and manipulate data without authorization, it increases the risk of violating confidentiality, integrity, and availability requirements set by these standards.

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