Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
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 /
sms-auth /
vendor /
sentry /
sentry /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Context
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
HttpClient
[ DIR ]
drwxrwxr-x
Integration
[ DIR ]
drwxrwxr-x
Monolog
[ DIR ]
drwxrwxr-x
Serializer
[ DIR ]
drwxrwxr-x
State
[ DIR ]
drwxrwxr-x
Tracing
[ DIR ]
drwxrwxr-x
Transport
[ DIR ]
drwxrwxr-x
Util
[ DIR ]
drwxrwxr-x
Breadcrumb.php
7.82
KB
-rw-rw-r--
Client.php
10.24
KB
-rw-rw-r--
ClientBuilder.php
5.02
KB
-rw-rw-r--
ClientBuilderInterface.php
2.95
KB
-rw-rw-r--
ClientInterface.php
2.77
KB
-rw-rw-r--
Dsn.php
6.51
KB
-rw-rw-r--
ErrorHandler.php
15.16
KB
-rw-rw-r--
Event.php
15.14
KB
-rw-rw-r--
EventHint.php
1.9
KB
-rw-rw-r--
EventId.php
868
B
-rw-rw-r--
EventType.php
1.19
KB
-rw-rw-r--
ExceptionDataBag.php
2.49
KB
-rw-rw-r--
ExceptionMechanism.php
1.67
KB
-rw-rw-r--
Frame.php
6.63
KB
-rw-rw-r--
FrameBuilder.php
8.03
KB
-rw-rw-r--
Options.php
29.08
KB
-rw-rw-r--
Response.php
1017
B
-rw-rw-r--
ResponseStatus.php
2.97
KB
-rw-rw-r--
SentrySdk.php
1.24
KB
-rw-rw-r--
Severity.php
3.85
KB
-rw-rw-r--
Stacktrace.php
2.4
KB
-rw-rw-r--
StacktraceBuilder.php
2.39
KB
-rw-rw-r--
UserDataBag.php
5.29
KB
-rw-rw-r--
functions.php
4.03
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php declare(strict_types=1); namespace Sentry; use Sentry\Tracing\Transaction; use Sentry\Tracing\TransactionContext; /** * Creates a new Client and Hub which will be set as current. * * @param array<string, mixed> $options The client options */ function init(array $options = []): void { $client = ClientBuilder::create($options)->getClient(); SentrySdk::init()->bindClient($client); } /** * Captures a message event and sends it to Sentry. * * @param string $message The message * @param Severity|null $level The severity level of the message * @param EventHint|null $hint Object that can contain additional information about the event */ function captureMessage(string $message, ?Severity $level = null, ?EventHint $hint = null): ?EventId { /** @psalm-suppress TooManyArguments */ return SentrySdk::getCurrentHub()->captureMessage($message, $level, $hint); } /** * Captures an exception event and sends it to Sentry. * * @param \Throwable $exception The exception * @param EventHint|null $hint Object that can contain additional information about the event */ function captureException(\Throwable $exception, ?EventHint $hint = null): ?EventId { /** @psalm-suppress TooManyArguments */ return SentrySdk::getCurrentHub()->captureException($exception, $hint); } /** * Captures a new event using the provided data. * * @param Event $event The event being captured * @param EventHint|null $hint May contain additional information about the event */ function captureEvent(Event $event, ?EventHint $hint = null): ?EventId { return SentrySdk::getCurrentHub()->captureEvent($event, $hint); } /** * Logs the most recent error (obtained with {@see error_get_last()}). * * @param EventHint|null $hint Object that can contain additional information about the event */ function captureLastError(?EventHint $hint = null): ?EventId { /** @psalm-suppress TooManyArguments */ return SentrySdk::getCurrentHub()->captureLastError($hint); } /** * Records a new breadcrumb which will be attached to future events. They * will be added to subsequent events to provide more context on user's * actions prior to an error or crash. * * @param Breadcrumb $breadcrumb The breadcrumb to record */ function addBreadcrumb(Breadcrumb $breadcrumb): void { SentrySdk::getCurrentHub()->addBreadcrumb($breadcrumb); } /** * Calls the given callback passing to it the current scope so that any * operation can be run within its context. * * @param callable $callback The callback to be executed */ function configureScope(callable $callback): void { SentrySdk::getCurrentHub()->configureScope($callback); } /** * Creates a new scope with and executes the given operation within. The scope * is automatically removed once the operation finishes or throws. * * @param callable $callback The callback to be executed */ function withScope(callable $callback): void { SentrySdk::getCurrentHub()->withScope($callback); } /** * Starts a new `Transaction` and returns it. This is the entry point to manual * tracing instrumentation. * * A tree structure can be built by adding child spans to the transaction, and * child spans to other spans. To start a new child span within the transaction * or any span, call the respective `startChild()` method. * * Every child span must be finished before the transaction is finished, * otherwise the unfinished spans are discarded. * * The transaction must be finished with a call to its `finish()` method, at * which point the transaction with all its finished child spans will be sent to * Sentry. * * @param TransactionContext $context Properties of the new transaction * @param array<string, mixed> $customSamplingContext Additional context that will be passed to the {@see \Sentry\Tracing\SamplingContext} */ function startTransaction(TransactionContext $context, array $customSamplingContext = []): Transaction { /** @psalm-suppress TooManyArguments */ return SentrySdk::getCurrentHub()->startTransaction($context, $customSamplingContext); }
Close