CVE-2026-19343
Received Received - Intake

SQL Injection in Task Management System 1.0

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

Publication date: 2026-08-09

Last updated on: 2026-08-09

Assigner: VulDB

Description

A flaw has been found in code-projects Task Management System 1.0. Affected by this vulnerability is an unknown functionality of the file /admin/AdminLogin.php. Executing a manipulation of the argument email/password can lead to sql injection. The attack may be performed from remote. The exploit has been published and may be used.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

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

Affected Vendors & Products

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

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 vulnerability is a SQL Injection Authentication Bypass in the Code-Projects Task Management System Admin Login. It allows a remote unauthenticated attacker to bypass administrator authentication by manipulating SQL queries through the email and password parameters in the /admin/AdminLogin.php file. The flaw occurs because user input is directly concatenated into SQL commands without proper sanitization or parameter binding.

Detection Guidance

To detect SQL injection vulnerabilities like CVE-2026-19343, test the /admin/AdminLogin.php endpoint with manipulated email/password parameters. Use tools like SQLmap with: sqlmap -u "http://target.com/admin/AdminLogin.php" --data="email=test&password=test" --risk=3 --level=5. Alternatively, manually test with curl: curl -X POST -d "email=' OR '1'='1' --password=anything" http://target.com/admin/AdminLogin.php. Check for unexpected responses or admin panel access.

Monitor database logs for unusual queries containing concatenated inputs. Enable PHP error logging to detect SQL syntax errors in responses. Inspect network traffic for POST requests to /admin/AdminLogin.php with suspicious payloads.

Impact Analysis

This vulnerability allows attackers to gain unauthorized access to the administrator interface. Once exploited, they can perform administrative actions such as managing users, tasks, projects, and modifying accounts. The attack can be executed remotely without authentication, increasing the risk of compromise.

Compliance Impact

This vulnerability can lead to unauthorized access to sensitive data, which may violate compliance requirements under GDPR and HIPAA. GDPR requires protection of personal data, while HIPAA mandates safeguards for protected health information. A successful exploit could result in data breaches, leading to legal penalties and reputational damage.

Mitigation Strategies

Immediately update the /admin/AdminLogin.php file to use prepared statements with bound parameters for all SQL queries. Replace direct string concatenation with parameterized queries to prevent SQL injection. Ensure passwords are stored using password_hash() and verified with password_verify(). Disable detailed PHP errors in production to avoid exposing sensitive information.

Temporarily restrict access to the admin login page via network rules or firewall until the fix is applied. Monitor for unauthorized access attempts and review logs for signs of exploitation. Consider implementing multi-factor authentication for the admin interface as an additional layer of security.

Chat Assistant

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

EPSS Chart