CVE-2025-11329
BaseFortify
Publication date: 2025-10-06
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_course_registration_site | 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-11329 is a critical SQL injection vulnerability in version 1.0 of the Online Course Registration software, specifically in the /admin/manage-students.php file. The flaw occurs because the 'id' parameter is improperly handled and used directly in SQL queries without proper validation or sanitization. This allows remote attackers to inject malicious SQL commands, enabling unauthorized access and manipulation of the database without requiring any authentication. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized database access, allowing attackers to retrieve, modify, or delete sensitive data. It can compromise the confidentiality, integrity, and availability of the system, potentially resulting in data leakage, data tampering, full system compromise, and service disruption. Since exploitation requires no authentication, it poses a high risk to affected systems. [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 'id' parameter in the /admin/manage-students.php file for SQL injection. Tools like sqlmap can be used to automate detection by injecting payloads and observing responses. A common approach is to use time-based blind SQL injection payloads involving functions like SLEEP() to confirm the vulnerability. Additionally, Google dorking with the query 'inurl:admin/manage-students.php' can help identify potentially vulnerable targets. Example command using sqlmap: sqlmap -u "http://target.com/admin/manage-students.php?id=1" --batch --level=5 --risk=3 [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Replacing the affected component with an alternative product if possible. 2) Implementing prepared statements with parameter binding to prevent SQL injection by separating SQL code from user input. 3) Enforcing strict input validation and filtering on the 'id' parameter to ensure it conforms to expected formats. 4) Minimizing database user permissions by avoiding use of high-privilege accounts for routine operations. 5) Conducting regular security audits of code and systems to detect and address vulnerabilities promptly. [1, 3]