CVE-2026-14700
Received Received - Intake

SQL Injection in Internship Management System

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

Publication date: 2026-07-05

Last updated on: 2026-07-05

Assigner: VulDB

Description

A security vulnerability has been detected in code-projects Internship Management System 1.0. The impacted element is an unknown function of the file employer/login.php of the component Employer Login Endpoint. The manipulation of the argument email/password leads to sql injection. Remote exploitation of the attack is possible. The exploit has been disclosed publicly and may be used.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

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

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
code-projects internship_management_system 1.0

Helpful Resources

Exploitability

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

Instant insights powered by AI
Executive Summary

This vulnerability is a Time-Based Blind SQL Injection found in the employer/login.php file of the Internship Management System 1.0. It occurs because the application directly concatenates untrusted input from the email parameter into an SQL query without proper parameterization or sanitization.

An attacker can exploit this by injecting SQL syntax into the email field during login attempts. This allows the attacker to manipulate the database query, causing delays that confirm the presence of the injection even without valid credentials.

Impact Analysis

This vulnerability can allow a remote attacker to perform SQL injection attacks on the system, potentially leading to unauthorized access to sensitive data stored in the database.

The attacker can manipulate the database queries to read, modify, or delete data, which can compromise the confidentiality, integrity, and availability of the system.

Since the vulnerability is remotely exploitable without authentication, it poses a significant security risk.

Detection Guidance

This vulnerability can be detected by testing the employer/login.php endpoint for SQL injection, specifically targeting the email parameter. A common method is to perform a time-based blind SQL injection test by injecting SQL syntax that causes a delay in the database response.

  • Use curl or similar tools to send crafted requests to the login endpoint with payloads that induce delays, such as: curl -X POST -d "email=anything' OR IF(SLEEP(5),1,0)-- &password=anything" http://target/employer/login.php
  • Observe if the response time is significantly delayed, indicating a possible time-based blind SQL injection.
  • Automated tools like sqlmap can also be used to detect this vulnerability by targeting the email parameter on the login endpoint.
Mitigation Strategies

Immediate mitigation steps include sanitizing and parameterizing all inputs to the employer/login.php endpoint, especially the email and password parameters, to prevent SQL injection.

  • Implement prepared statements or parameterized queries instead of directly concatenating user inputs into SQL queries.
  • Apply input validation and escaping to ensure that malicious SQL syntax cannot be injected.
  • If possible, temporarily restrict access to the vulnerable endpoint or monitor and block suspicious requests until a patch is applied.
  • Update the system with any available patches or security updates from the vendor or project maintainers.

Chat Assistant

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

EPSS Chart