CVE-2025-11110
BaseFortify
Publication date: 2025-09-28
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 |
|---|---|---|
| campcodes | online_learning_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?
CVE-2025-11110 is a critical SQL injection vulnerability in Campcodes Online Learning Management System version 1.0, specifically in the /admin/school_year.php file. The vulnerability occurs because the 'school_year' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code remotely without authentication. This can lead to unauthorized execution of SQL commands, impacting the system's confidentiality, integrity, and availability. [1, 2, 3]
How can this vulnerability impact me? :
Exploitation of this vulnerability can allow attackers to access, modify, or delete database information without authorization. It can lead to data leakage, unauthorized data modification or deletion, full system compromise, and disruption of services. Since no authentication is required, attackers can remotely exploit this flaw easily, potentially causing significant damage to the affected system and its data. [1, 2, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'school_year' parameter in the /admin/school_year.php file for SQL injection. Tools like sqlmap can automate detection and exploitation. Example payloads include error-based SQL injection payloads that trigger MySQL error messages and time-based blind SQL injection payloads that cause delays to confirm injection. For instance, using sqlmap with a command like: sqlmap -u "http://target/admin/school_year.php" --data="school_year=1111" --risk=3 --level=5 can help detect the vulnerability. Additionally, Google dorking with the query inurl:admin/school_year.php can identify potentially vulnerable targets. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include replacing the affected product with an alternative if possible. If continuing to use the product, apply strict input validation and filtering on the 'school_year' parameter, and implement prepared statements with parameter binding to prevent SQL injection. Minimize database user permissions by avoiding high-privilege accounts for the application database connection. Conduct regular security audits to detect and fix vulnerabilities promptly. Since no official patches or countermeasures are reported, these steps are critical to reduce risk. [1, 2, 3]