CVE-2026-14754
Received Received - Intake

SQL Injection in Hotel and Tourism Reservation 1.0

Vulnerability report for CVE-2026-14754, 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 flaw has been found in code-projects Hotel and Tourism Reservation 1.0. Affected is an unknown function of the file /admin/add_room.php. Executing a manipulation of the argument delete_image/edit/description/number/price/rooms/type can lead to sql injection. The attack can be launched remotely. The exploit has been published 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

Currently, no data is known.

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 Hotel and Tourism Reservation System PHP 1.0, specifically in the /admin/add_room.php file. It affects multiple parameters such as delete_image, edit, description, number, price, rooms, and type. An attacker can remotely exploit this flaw without needing authentication by manipulating these parameters, which allows them to execute unauthorized SQL commands on the database.

Impact Analysis

Exploiting this vulnerability can allow an attacker to enumerate the entire database, extract sensitive information including credentials, and potentially achieve full system compromise. This means unauthorized access to confidential data and control over the affected system, which can lead to data breaches, service disruption, and further exploitation.

Detection Guidance

This vulnerability can be detected by testing the affected parameters in the /admin/add_room.php file for SQL injection using time-based blind SQL injection techniques.

Specifically, the parameters delete_image, edit, description, number, price, rooms, and type can be tested by injecting payloads that cause a time delay in the response if the injection is successful.

For example, using curl or a similar tool, you can send requests with payloads that include SQL commands like 'SLEEP(5)' to observe if the server response is delayed, indicating vulnerability.

  • curl "http://target/admin/add_room.php?delete_image=1' AND IF(1=1,SLEEP(5),0)-- -"
  • curl "http://target/admin/add_room.php?edit=1' AND IF(1=1,SLEEP(5),0)-- -"
  • curl "http://target/admin/add_room.php?description=1' AND IF(1=1,SLEEP(5),0)-- -"
Mitigation Strategies

The immediate mitigation step is to prevent SQL injection by using prepared statements with parameterized queries in the /admin/add_room.php file.

This approach ensures that user input is treated as data and not executable code, effectively blocking SQL injection attempts.

Additionally, restricting access to the /admin/add_room.php page and monitoring for suspicious requests can help reduce the risk of exploitation.

Compliance Impact

The SQL injection vulnerability in the Hotel and Tourism Reservation System allows remote attackers to extract credentials and sensitive data from the database. This exposure of sensitive information can lead to non-compliance with data protection regulations such as GDPR and HIPAA, which mandate the protection of personal and sensitive data against unauthorized access.

Failure to remediate this vulnerability could result in data breaches, potentially violating requirements for data confidentiality, integrity, and security under these standards.

Chat Assistant

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

EPSS Chart