CVE-2025-9444
BaseFortify
Publication date: 2025-08-26
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 |
|---|---|---|
| 1000projects | online_student_project_report_submission_and_evaluation_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-9444 is a critical SQL injection vulnerability in version 1.0 of the 1000projects Online Project Report Submission and Evaluation System. It exists in the file /admin/controller/delete_group_student.php via the batch_id parameter, which is not properly validated or sanitized. This allows attackers to inject malicious SQL code remotely without authentication, enabling unauthorized access to the database, data leakage, modification, or deletion of data. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized database access, allowing attackers to retrieve sensitive information, modify or delete data, disrupt services, and potentially gain full control over the system. Exploitation requires no authentication and can be performed remotely, posing a severe risk to system security and business continuity. [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 `batch_id` parameter in the URL `/admin/controller/delete_group_student.php` for SQL injection. Common techniques include using SQL injection payloads such as boolean-based blind SQLi (e.g., `batch_id=2' AND 8083=8083 AND 'bKqB'='bKqB`), error-based SQLi, stacked queries (e.g., `batch_id=2';SELECT SLEEP(5) #`), and time-based blind SQLi (e.g., `batch_id=2' AND (SELECT SLEEP(5))`). Tools like sqlmap can automate detection and exploitation by targeting the vulnerable parameter. Additionally, Google dorking with `inurl:admin/controller/delete_group_student.php` can help identify vulnerable instances. [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 by separating SQL code from user input; 2) Applying strict input validation and filtering on the `batch_id` parameter to ensure it conforms to expected formats; 3) Minimizing database user privileges by avoiding high-privilege accounts for application connections; 4) Conducting regular security audits to detect and fix vulnerabilities promptly; 5) If possible, replacing or updating the affected component or product to a version without this vulnerability. [1, 2, 3]