CVE-2026-18958
Received Received - Intake

SQL Injection in Student Management System via Login

Vulnerability report for CVE-2026-18958, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-08-05

Last updated on: 2026-08-05

Assigner: VulDB

Description

A vulnerability was detected in imranrisal-dev Student-Management-System 18ea7904c339e0c7b0234724a79c939ce6191def/a8d43a29aaf267e7ca97171d6dbb44057bcd7f8c. Affected by this vulnerability is an unknown functionality of the file loginCheckTest.php of the component Login. The manipulation of the argument username/password results in sql injection. The attack can be launched remotely. The exploit is now public and may be used. This product does not use versioning. This is why information about affected and unaffected releases are unavailable. The vendor was contacted early about this disclosure but did not respond in any way.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-05
Last Modified
2026-08-05
Generated
2026-08-06
AI Q&A
2026-08-05
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
imranrisal-dev student-management-system *

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions

Instant insights powered by AI
Executive Summary

CVE-2026-18958 is a SQL injection vulnerability in the Student-Management-System affecting the loginCheckTest.php file. The flaw allows remote attackers to manipulate the username and password arguments to inject malicious SQL code. This occurs because user input is directly concatenated into SQL queries without sanitization.

Detection Guidance

To detect this SQL injection vulnerability, inspect the Student-Management-System for the file loginCheckTest.php. Check if user inputs from username and password fields are directly concatenated into SQL queries without sanitization. Look for code patterns like 'select * from users where username={$username} and password={$password}'. Test with inputs like ' OR '1'='1' to see if authentication bypass occurs.

Impact Analysis

This vulnerability enables unauthenticated remote attackers to bypass authentication, gain unauthorized access to student or staff accounts, and steal sensitive data like grades or personal information. Attackers could also take over accounts or modify data in the system.

Compliance Impact

This vulnerability likely violates GDPR and HIPAA by exposing sensitive personal data (e.g., grades, staff information) due to unauthorized access. Non-compliance may result in legal penalties, data breach notifications, and reputational damage for affected institutions.

Mitigation Strategies

Immediately replace direct SQL query concatenation with prepared statements in loginCheckTest.php and UserModel.php. Update the validateUser() function to use password_hash() and password_verify() for secure password handling. Remove or hash all default plaintext credentials in the SQL schema to prevent unauthorized access.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-18958. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart