CVE-2025-14337
BaseFortify
Publication date: 2025-12-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 |
|---|---|---|
| angeljudesuarez | student_management_system | 1.0 |
| itsourcecode | student_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 in the itsourcecode Student Management System 1.0, specifically in the /new_grade.php file. It occurs due to manipulation of the 'grade' argument, allowing an attacker to inject malicious SQL code. The attack can be performed remotely and the exploit has been publicly disclosed.
How can this vulnerability impact me? :
This vulnerability can allow an attacker to execute arbitrary SQL commands on the database, potentially leading to unauthorized data access, data modification, or deletion. This can compromise the integrity and confidentiality of the student management system's data.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows unauthorized attackers to perform SQL injection attacks that can lead to unauthorized database access, data leakage, data tampering, and service interruptions. Such impacts compromise the confidentiality, integrity, and availability of sensitive data, which can result in non-compliance with data protection regulations like GDPR and HIPAA that require safeguarding personal and sensitive information. Therefore, this vulnerability poses a significant risk to compliance with these common standards and regulations. [1, 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 /new_grade.php endpoint for SQL injection on the 'grade' POST parameter. A suggested command to detect the vulnerability is using sqlmap as follows: python sqlmap.py --random-agent --batch -u "http://<target-ip>:<port>/new_grade.php" --data "grade=1&id=1" --dbms=mysql --current-db. Additionally, vulnerable targets can be identified using Google dorking by searching for "inurl:new_grade.php". [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Use prepared statements and parameter binding to separate SQL code from user input, preventing SQL injection. 2) Implement strict input validation and filtering on the 'grade' parameter to ensure it conforms to expected formats. 3) Minimize database user permissions by avoiding high-privilege accounts for routine operations. 4) Conduct regular security audits and code reviews to detect and remediate vulnerabilities promptly. [1]