Tul xxx Tul
User / IP
:
216.73.216.217
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
emprendo.com.co
/
public_html
/
resplandor
/
Viewing: hotel.sql
-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 20-05-2025 a las 01:37:16 -- Versión del servidor: 10.4.32-MariaDB -- Versión de PHP: 8.2.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `hotel` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `contact` -- CREATE TABLE `contact` ( `ID` bigint(10) NOT NULL, `FirstName` varchar(50) NOT NULL, `LastName` varchar(50) NOT NULL, `Email` text NOT NULL, `Message` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `contact` -- INSERT INTO `contact` (`ID`, `FirstName`, `LastName`, `Email`, `Message`) VALUES (5, 'Daniel ', 'Contreras', 'danisuperalex@gmail.com', 'quiero una fiesta para celebrar mi graduacion de aviador '); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `event_booking` -- CREATE TABLE `event_booking` ( `BookingId` bigint(10) NOT NULL, `EventId` bigint(10) NOT NULL, `User_id` bigint(10) NOT NULL, `Date` date NOT NULL, `Modified_date` timestamp NOT NULL DEFAULT current_timestamp(), `Event_date` date NOT NULL, `NoOfGuest` varchar(50) NOT NULL, `EventTime` time NOT NULL, `Package` bigint(10) NOT NULL, `Amount` double NOT NULL, `Email` text NOT NULL, `Phone_number` bigint(10) NOT NULL, `Status` enum('Rejected','Cancelled','Paid','Booked','CheckedOut') NOT NULL DEFAULT 'Booked' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `event_list` -- CREATE TABLE `event_list` ( `EventId` bigint(10) NOT NULL, `EventTypeId` bigint(10) NOT NULL, `HallNumber` bigint(10) NOT NULL, `Status` enum('active','in-active') NOT NULL, `Booking_status` enum('Booked','Available') NOT NULL DEFAULT 'Available' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `event_list` -- INSERT INTO `event_list` (`EventId`, `EventTypeId`, `HallNumber`, `Status`, `Booking_status`) VALUES (27, 16, 1, 'active', 'Available'), (28, 17, 1, 'active', 'Available'), (30, 24, 0, 'active', 'Available'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `event_payment` -- CREATE TABLE `event_payment` ( `PaymentId` bigint(10) NOT NULL, `BookingId` bigint(10) NOT NULL, `PaymentType` enum('Cash','Net Banking','Credit Card','Debit Card') NOT NULL, `PaymentDate` date NOT NULL DEFAULT current_timestamp(), `Amount` int(50) NOT NULL, `Status` enum('Paid') NOT NULL DEFAULT 'Paid' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `event_type` -- CREATE TABLE `event_type` ( `EventTypeId` bigint(10) NOT NULL, `EventType` varchar(50) NOT NULL, `EventImage` text NOT NULL, `Description` text NOT NULL, `Cost` double NOT NULL, `Status` enum('active','in-active') NOT NULL DEFAULT 'active' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `event_type` -- INSERT INTO `event_type` (`EventTypeId`, `EventType`, `EventImage`, `Description`, `Cost`, `Status`) VALUES (16, 'Sala para Fiestas', '3.jpg', 'Aire Acondicionado, refrigerio continuo', 40, 'active'), (17, 'Salón de Bodas', '1.jpg', ' Este salón se ofrece principalmente para bodas, cumpleaños, despedidas de soltera y otros eventos personales. Pueden ser independientes o formar parte de un hotel o restaurante.', 150, 'active'), (24, 'Sala de Reuniones', 'meeting.jpeg', 'Las salas de reuniones son la combinación perfecta de espacio y ambiente ideal con comodidades de última generación y equipos audiovisuales.', 40, 'active'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `general_settings` -- CREATE TABLE `general_settings` ( `ID` bigint(10) NOT NULL, `Name` text NOT NULL, `Address_line1` text NOT NULL, `Address_line2` text NOT NULL, `City` varchar(10) NOT NULL, `State` varchar(10) NOT NULL, `Country` varchar(10) NOT NULL, `Zip_code` bigint(10) NOT NULL, `Email` text NOT NULL, `Phone_number` varchar(20) DEFAULT NULL, `Telephone_number` varchar(20) DEFAULT NULL, `Description` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `general_settings` -- INSERT INTO `general_settings` (`ID`, `Name`, `Address_line1`, `Address_line2`, `City`, `State`, `Country`, `Zip_code`, `Email`, `Phone_number`, `Telephone_number`, `Description`) VALUES (1, 'Hotel Esplendor', 'Avenida Monseñor Jauregui ', 'Calle 3, Frente al estacionamiento Robinson', 'Ejido', 'Mérida', 'Venezuela', 5115, 'danisuperalex@gmail.com', '04147340563', '04245782364', 'Ya sea que reserve una habitación en línea o por teléfono, es un proceso que es bastante fácil. '); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `room_booking` -- CREATE TABLE `room_booking` ( `BookingId` bigint(10) NOT NULL, `RoomId` bigint(10) NOT NULL, `User_id` bigint(10) NOT NULL, `Date` date NOT NULL, `Modified_date` timestamp NOT NULL DEFAULT current_timestamp(), `CheckIn` date NOT NULL, `CheckOut` date NOT NULL, `NoOfGuest` varchar(50) NOT NULL, `Amount` double NOT NULL, `Email` text NOT NULL, `Phone_number` bigint(10) NOT NULL, `Status` enum('Rejected','Cancelled','Paid','Booked','CheckedOut') NOT NULL DEFAULT 'Booked' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `room_booking` -- INSERT INTO `room_booking` (`BookingId`, `RoomId`, `User_id`, `Date`, `Modified_date`, `CheckIn`, `CheckOut`, `NoOfGuest`, `Amount`, `Email`, `Phone_number`, `Status`) VALUES (28, 13, 5, '2021-10-12', '2021-10-12 15:02:20', '2021-10-20', '2021-10-22', '1', 2400, 'rajesh@gmail.com', 8542526352, 'Cancelled'), (30, 22, 15, '2021-10-12', '2021-10-12 15:08:36', '2021-12-02', '2021-12-03', '1', 1750, 'rakesh@gmail.com', 9685745241, 'CheckedOut'), (31, 13, 15, '2021-10-12', '2021-10-12 15:09:00', '2021-11-11', '2021-11-13', '2', 2400, 'rakesh@gmail.com', 7485965263, 'Cancelled'), (32, 16, 15, '2021-10-12', '2021-10-12 15:09:31', '2021-11-18', '2021-11-20', '2', 3600, 'rakesh@gmail.com', 9652635241, 'CheckedOut'), (33, 29, 15, '2021-10-12', '2021-10-12 15:10:07', '2021-10-14', '2021-10-23', '1', 31500, 'rakesh@gmail.com', 8541526352, 'CheckedOut'), (34, 18, 15, '2021-10-12', '2021-10-12 15:10:42', '2021-11-11', '2021-11-13', '2', 3600, 'rakesh@gmail.com', 8585968563, 'Rejected'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `room_list` -- CREATE TABLE `room_list` ( `RoomId` bigint(10) NOT NULL, `RoomTypeId` bigint(10) NOT NULL, `RoomNumber` bigint(10) NOT NULL, `Status` enum('active','in-active') NOT NULL, `Booking_status` enum('Booked','Available') NOT NULL DEFAULT 'Available' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `room_list` -- INSERT INTO `room_list` (`RoomId`, `RoomTypeId`, `RoomNumber`, `Status`, `Booking_status`) VALUES (13, 11, 1, 'active', 'Available'), (14, 11, 2, 'active', 'Available'), (15, 11, 3, 'active', 'Available'), (16, 12, 4, 'in-active', 'Available'), (17, 11, 5, 'active', 'Available'), (18, 12, 6, 'in-active', 'Available'), (19, 12, 7, 'in-active', 'Available'), (22, 14, 10, 'active', 'Available'), (23, 14, 11, 'active', 'Available'), (24, 14, 12, 'active', 'Available'), (25, 15, 13, 'active', 'Available'), (26, 15, 14, 'active', 'Available'), (27, 16, 15, 'active', 'Available'), (28, 18, 16, 'active', 'Available'), (29, 17, 17, 'active', 'Available'), (30, 16, 18, 'active', 'Available'), (31, 17, 19, 'active', 'Available'), (32, 15, 20, 'active', 'Available'), (33, 11, 525, 'active', 'Available'), (39, 24, 0, 'active', 'Available'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `room_payment` -- CREATE TABLE `room_payment` ( `PaymentId` bigint(10) NOT NULL, `BookingId` bigint(10) NOT NULL, `PaymentType` enum('Cash','Net Banking','Credit Card','Debit Card') NOT NULL, `PaymentDate` date NOT NULL DEFAULT current_timestamp(), `Amount` int(50) NOT NULL, `Status` enum('Paid') NOT NULL DEFAULT 'Paid' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `room_payment` -- INSERT INTO `room_payment` (`PaymentId`, `BookingId`, `PaymentType`, `PaymentDate`, `Amount`, `Status`) VALUES (2, 32, 'Net Banking', '2021-10-12', 3600, 'Paid'), (3, 30, 'Net Banking', '2021-10-12', 1750, 'Paid'), (4, 33, 'Debit Card', '2021-10-12', 31500, 'Paid'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `room_type` -- CREATE TABLE `room_type` ( `RoomTypeId` bigint(10) NOT NULL, `RoomType` varchar(50) NOT NULL, `RoomImage` text NOT NULL, `Description` text NOT NULL, `Cost` double NOT NULL, `Status` enum('active','in-active') NOT NULL DEFAULT 'active' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `room_type` -- INSERT INTO `room_type` (`RoomTypeId`, `RoomType`, `RoomImage`, `Description`, `Cost`, `Status`) VALUES (11, 'Habitación Familiar', 'well.jpg', 'Cocina, 2 Camas grande 1 Cama pequeña, TV, Aire Acondicionado, Agua Caliente..', 50, 'active'), (12, 'Habitación de Relajación', 'F.jpg', 'Jabón, Servicio de baño, Mini-Bar.', 40, 'active'), (14, 'Habitación Clásica', 'accomadation.jpg', 'Closet con Perchero, Teléfono. Ventanas al exterior.\r\n\r\n', 30, 'active'), (15, 'Habitación 1 persona', 'A.jpg', ' Closet con Perchero, Servicio las 24 horas, Computador y acceso a Internet.', 25, 'active'), (16, 'Cuarto de Lujo', 'classic.jpg', 'Closet con Perchero, Teléfono. Internet', 80, 'active'), (17, 'Habitación de noche', 'club.jpg', 'Servicio de comida, televisión', 60, 'active'), (18, 'Habitación Luna de Miel', 'super.jpg', 'TV por cable, Mini-bar, Cama de agua', 100, 'active'), (24, 'Suite Presidencial', 'super.jpg', 'Closet con Perchero, TV de pantalla plana 4K. Ventanas al exterior.', 60, 'active'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `users_details` -- CREATE TABLE `users_details` ( `UserId` bigint(10) NOT NULL, `FirstName` varchar(50) NOT NULL, `LastName` varchar(50) NOT NULL, `Email` text NOT NULL, `Password` varchar(64) NOT NULL, `ContactNo` varchar(50) NOT NULL, `Gender` varchar(50) NOT NULL, `ProfileImage` text NOT NULL DEFAULT 'user.png', `Status` enum('active','in-active') NOT NULL DEFAULT 'active' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -- -- Volcado de datos para la tabla `users_details` -- INSERT INTO `users_details` (`UserId`, `FirstName`, `LastName`, `Email`, `Password`, `ContactNo`, `Gender`, `ProfileImage`, `Status`) VALUES (2, 'admin', 'kumar', 'admin@gmail.com', '123', '9656859685', 'male', '1.jpg', 'in-active'), (5, 'Rajesh', 'K S', 'raju@gmail.com', '123', '9636636363', 'male', '2.jpeg', 'active'), (9, 'guvi', 'wew', 'guvi@gmail.com', '123', '9636636363', 'female', '2.jpeg', 'in-active'), (11, 'kamesh', 'K S', 'kamesh@gmail.com', '123', '9636636363', 'male', 'images.jpg', 'active'), (15, 'Rakesh', 'Balu', 'rakesh@gmail.com', '1234', '8563526352', 'female', '4.jpg', 'active'), (16, 'Daniel', 'Contreras', 'danisuperalex@gmail.com', '12345', '9636633663', 'male', '6.jpeg', 'in-active'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`ID`); -- -- Indices de la tabla `event_booking` -- ALTER TABLE `event_booking` ADD PRIMARY KEY (`BookingId`), ADD KEY `FK_User` (`User_id`), ADD KEY `FK_RoomBooking` (`EventId`); -- -- Indices de la tabla `event_list` -- ALTER TABLE `event_list` ADD PRIMARY KEY (`EventId`), ADD KEY `FK_EventType` (`EventTypeId`); -- -- Indices de la tabla `event_payment` -- ALTER TABLE `event_payment` ADD PRIMARY KEY (`PaymentId`), ADD KEY `Fk_Booking` (`BookingId`); -- -- Indices de la tabla `event_type` -- ALTER TABLE `event_type` ADD PRIMARY KEY (`EventTypeId`); -- -- Indices de la tabla `general_settings` -- ALTER TABLE `general_settings` ADD PRIMARY KEY (`ID`); -- -- Indices de la tabla `room_booking` -- ALTER TABLE `room_booking` ADD PRIMARY KEY (`BookingId`), ADD KEY `FK_User` (`User_id`), ADD KEY `FK_RoomBooking` (`RoomId`); -- -- Indices de la tabla `room_list` -- ALTER TABLE `room_list` ADD PRIMARY KEY (`RoomId`), ADD KEY `FK_RoomType` (`RoomTypeId`); -- -- Indices de la tabla `room_payment` -- ALTER TABLE `room_payment` ADD PRIMARY KEY (`PaymentId`), ADD KEY `Fk_Booking` (`BookingId`); -- -- Indices de la tabla `room_type` -- ALTER TABLE `room_type` ADD PRIMARY KEY (`RoomTypeId`); -- -- Indices de la tabla `users_details` -- ALTER TABLE `users_details` ADD PRIMARY KEY (`UserId`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `contact` -- ALTER TABLE `contact` MODIFY `ID` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT de la tabla `event_booking` -- ALTER TABLE `event_booking` MODIFY `BookingId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT de la tabla `event_list` -- ALTER TABLE `event_list` MODIFY `EventId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=31; -- -- AUTO_INCREMENT de la tabla `event_payment` -- ALTER TABLE `event_payment` MODIFY `PaymentId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT de la tabla `event_type` -- ALTER TABLE `event_type` MODIFY `EventTypeId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT de la tabla `general_settings` -- ALTER TABLE `general_settings` MODIFY `ID` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT de la tabla `room_booking` -- ALTER TABLE `room_booking` MODIFY `BookingId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35; -- -- AUTO_INCREMENT de la tabla `room_list` -- ALTER TABLE `room_list` MODIFY `RoomId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT de la tabla `room_payment` -- ALTER TABLE `room_payment` MODIFY `PaymentId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT de la tabla `room_type` -- ALTER TABLE `room_type` MODIFY `RoomTypeId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT de la tabla `users_details` -- ALTER TABLE `users_details` MODIFY `UserId` bigint(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `event_booking` -- ALTER TABLE `event_booking` ADD CONSTRAINT `FK_EventBooking` FOREIGN KEY (`EventId`) REFERENCES `event_list` (`EventId`) ON UPDATE CASCADE, ADD CONSTRAINT `FK_UserBooking` FOREIGN KEY (`User_id`) REFERENCES `users_details` (`UserId`) ON UPDATE CASCADE; -- -- Filtros para la tabla `event_list` -- ALTER TABLE `event_list` ADD CONSTRAINT `FK_EventType` FOREIGN KEY (`EventTypeId`) REFERENCES `event_type` (`EventTypeId`) ON UPDATE CASCADE; -- -- Filtros para la tabla `event_payment` -- ALTER TABLE `event_payment` ADD CONSTRAINT `FK_EventPayment` FOREIGN KEY (`BookingId`) REFERENCES `event_booking` (`BookingId`) ON UPDATE CASCADE; -- -- Filtros para la tabla `room_booking` -- ALTER TABLE `room_booking` ADD CONSTRAINT `FK_RoomBooking` FOREIGN KEY (`RoomId`) REFERENCES `room_list` (`RoomId`) ON UPDATE CASCADE, ADD CONSTRAINT `FK_User` FOREIGN KEY (`User_id`) REFERENCES `users_details` (`UserId`) ON UPDATE CASCADE; -- -- Filtros para la tabla `room_list` -- ALTER TABLE `room_list` ADD CONSTRAINT `FK_RoomType` FOREIGN KEY (`RoomTypeId`) REFERENCES `room_type` (`RoomTypeId`) ON UPDATE CASCADE; -- -- Filtros para la tabla `room_payment` -- ALTER TABLE `room_payment` ADD CONSTRAINT `Fk_Booking` FOREIGN KEY (`BookingId`) REFERENCES `room_booking` (`BookingId`) ON UPDATE CASCADE; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Coded With 💗 by
0x6ick