Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 13.58.45.209
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
app.php
9.07
KB
-rw-r--r--
2021-05-05 18:39
auth.php
3.17
KB
-rw-r--r--
2021-02-09 19:47
broadcasting.php
1.67
KB
-rw-r--r--
2021-03-22 11:47
cache.php
2.63
KB
-rw-r--r--
2021-02-09 19:47
database.php
4.3
KB
-rw-r--r--
2021-11-23 09:14
filesystems.php
2.08
KB
-rw-r--r--
2021-02-09 19:47
hashing.php
1.53
KB
-rw-r--r--
2021-02-09 19:47
logging.php
2.5
KB
-rw-r--r--
2021-02-09 19:47
mail.php
4.61
KB
-rw-r--r--
2021-06-07 11:11
queue.php
2.57
KB
-rw-r--r--
2021-02-09 19:47
services.php
1.19
KB
-rw-r--r--
2021-02-09 19:47
session.php
6.79
KB
-rw-r--r--
2021-05-25 07:32
view.php
1.03
KB
-rw-r--r--
2021-02-09 19:47
websockets.php
2.99
KB
-rw-r--r--
2021-02-09 19:47
Save
Rename
<?php 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', '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' => ['daily'], ], 'single' => [ 'driver' => 'single', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/laravel.log'), 'level' => 'debug', 'days' => 14, ], 'slack' => [ 'driver' => 'slack', 'url' => env('LOG_SLACK_WEBHOOK_URL'), 'username' => 'Laravel Log', 'emoji' => ':boom:', 'level' => 'critical', ], 'papertrail' => [ 'driver' => 'monolog', 'level' => 'debug', 'handler' => SyslogUdpHandler::class, 'handler_with' => [ 'host' => env('PAPERTRAIL_URL'), 'port' => env('PAPERTRAIL_PORT'), ], ], 'stderr' => [ 'driver' => 'monolog', 'handler' => StreamHandler::class, 'with' => [ 'stream' => 'php://stderr', ], ], 'syslog' => [ 'driver' => 'syslog', 'level' => 'debug', ], 'errorlog' => [ 'driver' => 'errorlog', 'level' => 'debug', ], ], ];