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


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

namespace Laravel\SerializableClosure\Serializers;

use 
Laravel\SerializableClosure\Contracts\Serializable;
use 
Laravel\SerializableClosure\Exceptions\InvalidSignatureException;
use 
Laravel\SerializableClosure\Exceptions\MissingSecretKeyException;

class 
Signed implements Serializable
{
    
/**
     * The signer that will sign and verify the closure's signature.
     *
     * @var \Laravel\SerializableClosure\Contracts\Signer|null
     */
    
public static $signer;

    
/**
     * The closure to be serialized/unserialized.
     *
     * @var \Closure
     */
    
protected $closure;

    
/**
     * Creates a new serializable closure instance.
     *
     * @param  \Closure  $closure
     * @return void
     */
    
public function __construct($closure)
    {
        
$this->closure $closure;
    }

    
/**
     * Resolve the closure with the given arguments.
     *
     * @return mixed
     */
    
public function __invoke()
    {
        return 
call_user_func_array($this->closurefunc_get_args());
    }

    
/**
     * Gets the closure.
     *
     * @return \Closure
     */
    
public function getClosure()
    {
        return 
$this->closure;
    }

    
/**
     * Get the serializable representation of the closure.
     *
     * @return array
     */
    
public function __serialize()
    {
        if (! static::
$signer) {
            throw new 
MissingSecretKeyException();
        }

        return static::
$signer->sign(
            
serialize(new Native($this->closure))
        );
    }

    
/**
     * Restore the closure after serialization.
     *
     * @param  array  $signature
     * @return void
     *
     * @throws \Laravel\SerializableClosure\Exceptions\InvalidSignatureException
     */
    
public function __unserialize($signature)
    {
        if (static::
$signer && ! static::$signer->verify($signature)) {
            throw new 
InvalidSignatureException();
        }

        
$this->closure unserialize($signature['serializable'])->getClosure();
    }
}

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