CVE-2026-71207
Received Received - Intake

SQL Injection and Hard-Coded Credentials in Stock-Inventory-Management-System

Vulnerability report for CVE-2026-71207, 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: 309f9ea4-e3e9-4c6c-b79d-e8eb01244f2c

Description

The Stock-Inventory-Management-System application's login.php assigns raw $_POST username/password values to $_SESSION and builds its authentication query by directly concatenating those session values into a SQL statement with no parameterization or escaping. An unauthenticated remote attacker can submit a payload such as ' OR '1'='1 in the login form to bypass authentication entirely. The same script additionally contains hardcoded administrative credentials (admin/neola) in a post-login conditional check, providing a second, independent full-authentication-bypass path.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-08-05
Last Modified
2026-08-05
Generated
2026-08-05
AI Q&A
2026-08-05
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.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

The vulnerability is a SQL injection flaw in the Stock-Inventory-Management-System application. The login.php script directly uses raw user input from login forms to build SQL queries without proper sanitization or parameterization. This allows attackers to bypass authentication by submitting specially crafted inputs like ' OR '1'='1. Additionally, the script contains hardcoded admin credentials (admin/neola) that provide another way to gain full access.

Detection Guidance

Check if the Stock-Inventory-Management-System application is running on your server by inspecting web server logs or accessing the login.php file directly. Look for SQL injection attempts in logs, such as payloads like ' OR '1'='1. Review the login.php source code for hardcoded credentials like admin/neola or direct SQL query construction without parameterization.

Impact Analysis

This vulnerability allows unauthenticated attackers to gain full administrative access to the system remotely. They can bypass login controls, access sensitive data, modify or delete records, and perform unauthorized actions. The hardcoded credentials provide a persistent backdoor even if other vulnerabilities are fixed.

Compliance Impact

This vulnerability likely violates multiple compliance requirements including GDPR (data protection and security), HIPAA (protected health information security), and other standards mandating proper authentication, access controls, and protection against SQL injection. The exposure of sensitive data and lack of proper security controls would result in non-compliance.

Mitigation Strategies

Immediately remove the hardcoded admin credentials (admin/neola) from the login.php file. Replace direct SQL query construction with parameterized queries to prevent SQL injection. Implement input validation and sanitization for all user inputs. Ensure session variables are not directly assigned raw POST values.

Chat Assistant

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

EPSS Chart