!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/View/Engines/   drwxr-xr-x
Free 117.15 GB of 200.55 GB (58.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\View\Engines;

use 
Exception;
use 
Throwable;
use 
Symfony\Component\Debug\Exception\FatalThrowableError;

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

    
/**
     * Get the evaluated contents of the view at the given path.
     *
     * @param  string  $__path
     * @param  array   $__data
     * @return string
     */
    
protected function evaluatePath($__path$__data)
    {
        
$obLevel ob_get_level();

        
ob_start();

        
extract($__dataEXTR_SKIP);

        
// We'll evaluate the contents of the view inside a try/catch block so we can
        // flush out any stray output that might get out before an error occurs or
        // an exception is thrown. This prevents any partial views from leaking.
        
try {
            include 
$__path;
        } catch (
Exception $e) {
            
$this->handleViewException($e$obLevel);
        } catch (
Throwable $e) {
            
$this->handleViewException(new FatalThrowableError($e), $obLevel);
        }

        return 
ltrim(ob_get_clean());
    }

    
/**
     * Handle a view exception.
     *
     * @param  \Exception  $e
     * @param  int  $obLevel
     * @return void
     *
     * @throws $e
     */
    
protected function handleViewException(Exception $e$obLevel)
    {
        while (
ob_get_level() > $obLevel) {
            
ob_end_clean();
        }

        throw 
$e;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.012 ]--