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.69
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 /
signalhgstore.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.agents
[ DIR ]
drwxrwxrwx
.claude
[ DIR ]
drwxrwxrwx
.git
[ DIR ]
drwxrwxrwx
.well-known
[ DIR ]
drwxr-xr-x
Pharmacy Management Software
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
.env
490
B
-rw-r--r--
.htaccess
2.4
KB
-rw-r--r--
.phpunit.result.cache
413
B
-rw-r--r--
Pharmacy_Management_System_PRD...
12.88
KB
-rw-rw-rw-
artisan
339
B
-rw-rw-rw-
composer.json
1.5
KB
-rw-r--r--
error_log
10.26
MB
-rw-r--r--
index.php
1.21
KB
-rw-r--r--
robots.txt
71
B
-rw-r--r--
zz-ud.php
1.43
KB
-rw-r--r--
zz-ud.txt
38
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * Front controller forwarder. * * The document root for this domain is the Laravel project root rather than * /public, so requests are handed to the real front controller inside /public. * Static files under /public are served directly. */ $uri = urldecode(parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH) ?? '/'); $asset = __DIR__.'/public'.$uri; if ($uri !== '/' && strpos($uri, '..') === false && is_file($asset)) { $types = [ 'css' => 'text/css', 'js' => 'application/javascript', 'json' => 'application/json', 'png' => 'image/png', 'jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'gif' => 'image/gif', 'svg' => 'image/svg+xml', 'webp' => 'image/webp', 'ico' => 'image/x-icon', 'woff' => 'font/woff', 'woff2' => 'font/woff2', 'ttf' => 'font/ttf', 'eot' => 'application/vnd.ms-fontobject', 'map' => 'application/json', 'txt' => 'text/plain', 'pdf' => 'application/pdf', ]; $ext = strtolower(pathinfo($asset, PATHINFO_EXTENSION)); if (isset($types[$ext])) { header('Content-Type: '.$types[$ext]); header('Content-Length: '.filesize($asset)); readfile($asset); exit; } } require __DIR__.'/public/index.php';
Close