CVE-2026-10258
SQL Injection in itsourcecode CMS 1.0
Publication date: 2026-06-01
Last updated on: 2026-06-01
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| itsourcecode | content_management_system | 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?
This vulnerability is a SQL injection issue found in the itsourcecode Content Management System version 1.0, specifically in the file /admin/add_sub_topic.php. The problem lies in the 'topic_id' parameter, which does not properly sanitize user input. This allows an attacker to inject malicious SQL queries remotely without needing authentication.
By exploiting this flaw, attackers can manipulate the database queries executed by the system, potentially leading to unauthorized access, data leakage, data tampering, or even full system control.
How can this vulnerability impact me? :
The impact of this vulnerability includes unauthorized database access, which can lead to sensitive data leakage, modification of data, and potentially full control over the affected system.
- Data leakage exposing confidential information.
- Data tampering that can alter or corrupt stored information.
- Potential full system compromise if attackers gain control through the database.
- Remote exploitation without requiring authentication.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This SQL injection vulnerability in the 'topic_id' parameter of /admin/add_sub_topic.php can be detected by testing the parameter for SQL injection flaws.
One common method is to use automated tools like sqlmap to test the endpoint for SQL injection.
- Example sqlmap command: sqlmap -u "http://targetsite/admin/add_sub_topic.php?topic_id=1" --batch
- Alternatively, manual testing can be done by injecting SQL payloads into the topic_id parameter and observing the response for errors or unexpected behavior.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include:
- Implement prepared statements or parameterized queries to safely handle the 'topic_id' parameter.
- Perform strict input validation and sanitization on all user inputs.
- Minimize database permissions to limit the impact of a potential SQL injection.
- Conduct regular security audits and vulnerability scans.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The SQL injection vulnerability in the itsourcecode Content Management System 1.0 allows unauthorized database access, data leakage, and tampering. Such unauthorized access and potential exposure of sensitive data can lead to non-compliance with common standards and regulations like GDPR and HIPAA, which require protection of personal and sensitive information.
Failure to properly sanitize inputs and prevent SQL injection can result in breaches of confidentiality, integrity, and availability of data, which are core requirements under these regulations.
Therefore, exploitation of this vulnerability could cause violations of data protection laws and lead to legal and financial consequences for affected organizations.