CVE-2023-54340
Unknown Unknown - Not Provided
SQL Injection in WorkOrder CMS 0.1.0 Enables Login Bypass

Publication date: 2026-01-13

Last updated on: 2026-01-13

Assigner: VulnCheck

Description
WorkOrder CMS 0.1.0 contains a SQL injection vulnerability that allows unauthenticated attackers to bypass login by manipulating username and password parameters. Attackers can inject malicious SQL queries using techniques like OR '1'='1' and stacked queries to access database information or execute administrative commands.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-01-13
Last Modified
2026-01-13
Generated
2026-05-07
AI Q&A
2026-01-14
EPSS Evaluated
2026-05-05
NVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
romzes13 workorder_cms 0.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.
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?

This vulnerability is a SQL injection flaw in WorkOrder CMS version 0.1.0 that allows unauthenticated attackers to bypass the login process. Attackers can manipulate the username and password parameters by injecting malicious SQL code, such as using the payload OR '1'='1' or stacked queries, to trick the system into granting unauthorized access. This happens because the application does not properly sanitize input parameters, enabling attackers to execute arbitrary SQL commands against the database. [2, 3]


How can this vulnerability impact me? :

This vulnerability can allow attackers to bypass authentication and gain unauthorized access to the WorkOrder CMS database. They can extract sensitive information such as login credentials, company details, and work order data, or execute administrative commands. This could lead to data compromise, unauthorized data manipulation, and potentially disrupt business operations that rely on the CMS. [1, 2, 3]


How can this vulnerability be detected on my network or system? Can you suggest some commands?

This vulnerability can be detected by testing the login POST parameters 'userName' and 'password' for SQL injection. You can use commands like curl to send payloads that attempt to bypass authentication, for example: curl -X POST -d "userName=' or '1'='1" -d "password=' or '1'='1" http://target-url/login Additionally, time-based blind SQL injection can be tested by injecting payloads such as ' OR SLEEP(5)-- to observe response delays. Monitoring for unusual login bypass attempts or unexpected database errors can also help detect exploitation attempts. [2]


What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation steps include applying input validation and sanitization on the 'userName' and 'password' parameters to prevent SQL injection. Use prepared statements or parameterized queries in the authentication code to avoid direct concatenation of user inputs into SQL queries. If a patch or updated version of WorkOrder CMS is available, apply it promptly. Additionally, restrict database permissions to limit the impact of potential SQL injection attacks and monitor logs for suspicious activity. [2, 3]


Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart