CVE-2025-10112
BaseFortify
Publication date: 2025-09-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 |
|---|---|---|
| itsourcecode | student_information_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-10112 is a critical SQL injection vulnerability in the itsourcecode Student Information Management System version 1.0. It exists in the file /admin/modules/department/index.php due to improper validation of the 'id' parameter. This flaw allows attackers to inject malicious SQL queries remotely without authentication, leading to unauthorized access to the database. Attackers can manipulate the 'id' argument to execute arbitrary SQL commands, potentially exposing, modifying, or deleting sensitive data. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can severely impact you by allowing attackers to gain unauthorized access to your database, leading to data leakage, unauthorized data modification or deletion, and potential full system compromise. It can also cause service disruption. Since exploitation requires no authentication and can be done remotely, it poses a high risk to the confidentiality, integrity, and availability of your system and 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 'id' parameter in the URL /admin/modules/department/index.php for SQL injection. Tools like sqlmap can be used to automate detection and confirm the vulnerability. Example command: sqlmap -u "http://target/admin/modules/department/index.php?id=1" --batch --dbs. Additionally, Google dorking with the query 'inurl:admin/modules/department/index.php' can help identify potentially vulnerable targets. [2, 3]
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. 2) Applying strict input validation and filtering on the 'id' parameter to ensure it conforms to expected formats. 3) Minimizing database user privileges by avoiding use of high-permission accounts for the application. 4) Conducting regular security audits to detect and fix vulnerabilities promptly. If possible, replace the affected software with a secure alternative. [2, 3]