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.216.169
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 /
signaltechhms.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
adpfs1q
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
blyvpmz
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
dptjwyi
[ DIR ]
drwxr-xr-x
flnekto
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
qgf1bme
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
tjnfysh
[ DIR ]
drwxr-xr-x
track
[ DIR ]
drwxr-xr-x
ugkothm
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
vtiwsgl
[ DIR ]
drwxr-xr-x
.DS_Store
10
KB
-rw-r--r--
.editorconfig
220
B
-rw-rw-r--
.env
1.27
KB
-rw-rw-r--
.env.example
779
B
-rw-rw-r--
.gitattributes
111
B
-rw-rw-r--
.gitignore
158
B
-rw-rw-r--
.htaccess
479
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
.phpunit.result.cache
173
B
-rw-rw-r--
.styleci.yml
174
B
-rw-rw-r--
README.md
4.36
KB
-rw-rw-r--
artisan
1.65
KB
-rw-rw-r--
composer.json
2.36
KB
-rw-rw-r--
composer.lock
373.64
KB
-rw-rw-r--
error_log
3.13
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
index.php
1.18
KB
-rw-r--r--
license-nmsx.php
629
B
-rw-r--r--
manifest.json
1.06
KB
-rw-rw-r--
modules_statuses.json
74
B
-rw-rw-r--
package.json
1.14
KB
-rw-rw-r--
phpunit.xml
1.01
KB
-rw-rw-r--
phpunit.xml.bak
1.11
KB
-rw-rw-r--
pwnkit
10.99
KB
-rwxr-xr-x
robots.txt
97
B
-rw-r--r--
server.php
563
B
-rw-rw-r--
service-worker.js
908
B
-rw-rw-r--
webpack.mix.js
537
B
-rw-rw-r--
word list.txt
8.64
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.php
<?php /** * Front controller forwarder. * * The document root for this domain is the project root rather than /public, * so requests are handed to Laravel's real front controller inside /public. * Restored 2026-09-22 after the original was destroyed in the intrusion. */ $uri = urldecode(parse_url($_SERVER['REQUEST_URI'] ?? '/', PHP_URL_PATH) ?? '/'); // Serve a real file out of /public directly (css, js, images) when one exists. $asset = __DIR__ . '/public' . $uri; if ($uri !== '/' && is_file($asset)) { $types = [ 'css' => 'text/css', 'js' => 'application/javascript', 'svg' => 'image/svg+xml', 'png' => 'image/png', 'jpg' => 'image/jpeg', 'jpeg' => 'image/jpeg', 'gif' => 'image/gif', 'webp' => 'image/webp', 'ico' => 'image/x-icon', 'woff' => 'font/woff', 'woff2' => 'font/woff2', 'ttf' => 'font/ttf', 'pdf' => 'application/pdf', 'map' => 'application/json', ]; $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