CVE-2026-2211
SQL Injection in Online Music Site AdminDeleteCategory.php Allows Remote Exploitation
Publication date: 2026-02-09
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 |
|---|---|---|
| fabian | online_music_site | 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?
[{'type': 'paragraph', 'content': 'CVE-2026-2211 is a SQL injection vulnerability in the Online Music Site version 1.0 by code-projects, specifically in the file /Administrator/PHP/AdminDeleteCategory.php.'}, {'type': 'paragraph', 'content': 'The vulnerability occurs because the "id" parameter in HTTP GET requests is directly embedded into SQL queries without proper sanitization or validation, allowing attackers to inject malicious SQL code.'}, {'type': 'paragraph', 'content': 'This flaw enables remote attackers to execute arbitrary SQL commands without authentication, potentially manipulating the database.'}] [1, 2, 3]
How can this vulnerability impact me? :
Exploiting this vulnerability can lead to unauthorized database operations such as data leakage, unauthorized data access, data tampering, full system compromise, and service disruption.
Because no authentication is required, attackers can remotely exploit this flaw to manipulate SQL queries and compromise the confidentiality, integrity, and availability of the affected system.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': "This SQL injection vulnerability can be detected by testing the 'id' parameter in HTTP GET requests to the /Administrator/PHP/AdminDeleteCategory.php file for improper input sanitization."}, {'type': 'paragraph', 'content': 'Proof-of-concept payloads include error-based, time-based blind, and UNION-based SQL injection techniques that can be used to test for the vulnerability.'}, {'type': 'list_item', 'content': "Error-based payload example: id=36' AND EXTRACTVALUE(8177,CONCAT(0x5c,0x71706b7a71,(SELECT (ELT(8177=8177,1))),0x717a7a6b71))--"}, {'type': 'list_item', 'content': "Time-based blind payload example: id=36' AND (SELECT 3695 FROM (SELECT(SLEEP(5)))PMXp)--"}, {'type': 'list_item', 'content': "UNION query payload example: id=36' UNION ALL SELECT CONCAT(0x71706b7a71,0x61774544424362554f4c49786c4b4b685664676a53556941766d6b50636f6670524663554945466e,0x717a7a6b71) #"}, {'type': 'paragraph', 'content': 'Tools like sqlmap can be used to automate detection and exploitation attempts against this vulnerability.'}, {'type': 'paragraph', 'content': 'Additionally, vulnerable targets can be identified using Google dorking with the query: inurl:Administrator/PHP/AdminDeleteCategory.php'}] [1, 3]
What immediate steps should I take to mitigate this vulnerability?
[{'type': 'paragraph', 'content': 'Immediate mitigation steps include implementing prepared statements with parameter binding to separate SQL code from user input.'}, {'type': 'paragraph', 'content': "Strict input validation and filtering should be applied to ensure the 'id' parameter conforms to expected formats."}, {'type': 'paragraph', 'content': 'Database user permissions should be limited to the minimum necessary, avoiding the use of high-privilege accounts for routine operations.'}, {'type': 'paragraph', 'content': 'Replacing the affected component with an alternative product is suggested if remediation is not feasible.'}, {'type': 'paragraph', 'content': 'Due to the high severity and ease of exploitation, immediate remediation is critical to protect system security and data integrity.'}] [1, 3]