CVE-2025-14336
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-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?
This vulnerability is a SQL injection issue found in the itsourcecode Student Management System 1.0, specifically in the /promote.php file. An attacker can manipulate the 'sy' argument to inject malicious SQL code. The attack can be launched remotely and the exploit is publicly available.
How can this vulnerability impact me? :
The vulnerability can allow an attacker to execute arbitrary SQL commands on the database, potentially leading to unauthorized data access, data modification, or data deletion. This can compromise the confidentiality, integrity, and availability of the system's data.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The SQL injection vulnerability in the itsourcecode Student Management System 1.0 allows unauthorized attackers to access, manipulate, or disrupt sensitive data without authentication. This can lead to breaches of confidentiality, integrity, and availability of personal or sensitive information, potentially resulting in non-compliance with data protection regulations such as GDPR and HIPAA, which require safeguarding sensitive data against unauthorized access and ensuring data integrity and availability. However, no specific compliance impact or regulatory assessment is detailed in the provided resources. [1, 3, 4]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This SQL injection vulnerability can be detected by testing the /promote.php endpoint, specifically the 'sy' parameter, for SQL injection flaws. One method is to use sqlmap with a command like: python sqlmap.py --random-agent --batch -u "http://<target-ip>:<port>/promote.php" --data "id=1&sy=1" --dbms=mysql --current-db. Additionally, time-based blind SQL injection payloads such as '1' AND (SELECT SLEEP(5)) AND '1'='1' can be used to observe delays indicating vulnerability. [3, 4]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implementing prepared statements and parameterized queries to separate SQL code from user input, preventing injection. 2) Applying strict input validation and filtering on the 'sy' parameter to ensure it matches expected formats. 3) Minimizing database user privileges by avoiding use of high-privilege accounts like 'root' or 'admin' for routine database operations. 4) Conducting regular security audits to detect and remediate vulnerabilities promptly. Since no vendor patch is currently available, these measures are critical to reduce risk. [3]