CVE-2026-93980
Received Received - Intake

SQL Injection in Internship Management System

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

Publication date: 2026-09-20

Last updated on: 2026-09-20

Assigner: VulDB

Description

A weakness has been identified in code-projects Internship Management System 1.0. This vulnerability affects unknown code of the file /admin/login.php of the component Admin Login Form. Executing a manipulation of the argument Password can lead to sql injection. The attack may be performed from remote. The exploit has been made available to the public and could be used for attacks.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-09-20
Last Modified
2026-09-20
Generated
2026-09-20
AI Q&A
2026-09-20
EPSS Evaluated
N/A
NVD
EUVD

Affected Vendors & Products

Currently, no data is known.

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

This is a time-based blind SQL injection vulnerability in the Internship Management System 1.0. The flaw exists in the admin/login.php file where the Password parameter is directly used in an SQL query without proper sanitization. An attacker can inject malicious SQL code, such as using the sleep() function to cause database delays, and extract data character by character from the users table. The vulnerability allows unauthenticated remote attacks.

Detection Guidance

To detect this SQL injection vulnerability, you can test the admin/login.php endpoint for time-based blind SQLi. Use tools like SQLmap with: sqlmap -u "http://target/admin/login.php" --data="Password=test" --time-sec=2 --dbms=mysql --risk=3 --level=5. Alternatively, manually test with curl: curl -X POST -d "Password=sleep(5)" http://target/admin/login.php and measure response delays.

Check for unusual database delays or errors in server logs when submitting inputs to the Password field. Monitor for repeated failed login attempts or unexpected payloads in HTTP requests.

Impact Analysis

An attacker could exploit this to gain unauthorized access to sensitive data, such as user credentials stored in plaintext. This could lead to full administrative account takeover, data breaches, or further compromise of the system. The public availability of exploit code increases the risk of real-world attacks.

Compliance Impact

This vulnerability could lead to non-compliance with GDPR and HIPAA due to unauthorized data access or exposure. GDPR requires protection of personal data, while HIPAA mandates safeguards for sensitive health information. A breach could result in legal penalties, fines, or reputational damage.

Mitigation Strategies

Immediately patch the application by updating to a fixed version or applying input validation. Sanitize the Password parameter using prepared statements with parameterized queries. Example in PHP: use PDO with prepared statements like $stmt = $pdo->prepare("SELECT * FROM admin WHERE username = ? AND password = ?");

Disable public access to admin/login.php if possible. Encrypt stored passwords using strong hashing (e.g., bcrypt). Monitor network traffic for SQL injection attempts and block malicious IPs.

Chat Assistant

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

EPSS Chart