CVE-2025-11555
BaseFortify
Publication date: 2025-10-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 |
|---|---|---|
| campcodes | online_learning_management_system | 1.0 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-11555 is a critical SQL injection vulnerability in Campcodes Online Learning Management System version 1.0, specifically in the /admin/calendar_of_events.php file. It occurs because the date_start parameter is used directly in SQL queries without proper input validation or sanitization, allowing attackers to inject malicious SQL code remotely without authentication. This can lead to unauthorized database access, data leakage, data modification or deletion, and potentially full system compromise or service disruption. [1]
How can this vulnerability impact me? :
This vulnerability can have severe impacts including unauthorized access to sensitive data, alteration or deletion of data, disruption of service, and potentially full compromise of the affected system. Attackers can exploit this remotely without authentication, which increases the risk of data breaches and operational downtime. [1]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
This vulnerability can negatively affect compliance with standards such as GDPR and HIPAA because it allows unauthorized access and potential leakage or modification of sensitive personal or health data. Such breaches can lead to violations of data protection and privacy regulations, resulting in legal and financial consequences. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the `date_start` parameter in the `/admin/calendar_of_events.php` endpoint for SQL injection. A common method is to use a time-based blind SQL injection payload that causes a delay in the database response. For example, sending a POST request with the payload `date_start=09/02/2025'+(SELECT 0x42667672 WHERE 6191=6191 AND (SELECT SLEEP(5)))+'` and observing a delayed response indicates the vulnerability. Tools like curl or sqlmap can be used to automate such tests. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implementing prepared statements with parameter binding to prevent SQL injection by separating SQL code from user input. 2) Applying strict input validation and filtering to ensure inputs conform to expected formats. 3) Minimizing database user permissions by avoiding the use of high-privilege accounts for routine operations. 4) Conducting regular security audits to detect and remediate vulnerabilities promptly. [1]