!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/Foundation/Exceptions/   drwxrwxr-x
Free 13.15 GB of 57.97 GB (22.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Foundation\Exceptions;

use 
Illuminate\Support\Traits\ReflectsClosures;
use 
Throwable;

class 
ReportableHandler
{
    use 
ReflectsClosures;

    
/**
     * The underlying callback.
     *
     * @var callable
     */
    
protected $callback;

    
/**
     * Indicates if reporting should stop after invoking this handler.
     *
     * @var bool
     */
    
protected $shouldStop false;

    
/**
     * Create a new reportable handler instance.
     *
     * @param  callable  $callback
     * @return void
     */
    
public function __construct(callable $callback)
    {
        
$this->callback $callback;
    }

    
/**
     * Invoke the handler.
     *
     * @param  \Throwable  $e
     * @return bool
     */
    
public function __invoke(Throwable $e)
    {
        
$result call_user_func($this->callback$e);

        if (
$result === false) {
            return 
false;
        }

        return ! 
$this->shouldStop;
    }

    
/**
     * Determine if the callback handles the given exception.
     *
     * @param  \Throwable  $e
     * @return bool
     */
    
public function handles(Throwable $e)
    {
        foreach (
$this->firstClosureParameterTypes($this->callback) as $type) {
            if (
is_a($e$type)) {
                return 
true;
            }
        }

        return 
false;
    }

    
/**
     * Indicate that report handling should stop after invoking this callback.
     *
     * @return $this
     */
    
public function stop()
    {
        
$this->shouldStop true;

        return 
$this;
    }
}

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