!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/3ros/simplesamlphp/lib/SimpleSAML/   drwxrwxr-x
Free 14.05 GB of 61.93 GB (22.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/**
 * Base class for datastores.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
abstract class SimpleSAML_Store {

    
/**
     * Our singleton instance.
     *
     * This is FALSE if the datastore isn't enabled, and NULL
     * if we haven't attempted to initialize it.
     *
     * @var SimpleSAML_Store|FALSE|NULL
     */
    
private static $instance;


    
/**
     * Retrieve our singleton instance.
     *
     * @return SimpleSAML_Store|FALSE  The datastore, or FALSE if it isn't enabled.
     */
    
public static function getInstance() {

        if (
self::$instance !== NULL) {
            return 
self::$instance;
        }

        
$config SimpleSAML_Configuration::getInstance();
        
$storeType $config->getString('store.type'NULL);
        if (
$storeType === NULL) {
            
$storeType $config->getString('session.handler''phpsession');
        }

        switch (
$storeType) {
        case 
'phpsession':
            
/* We cannot support advanced features with the PHP session store. */
            
self::$instance FALSE;
            break;
        case 
'memcache':
            
self::$instance = new SimpleSAML_Store_Memcache();
            break;
        case 
'sql':
            
self::$instance = new SimpleSAML_Store_SQL();
            break;
        default:
            if (
strpos($storeType':') === FALSE) {
                throw new 
SimpleSAML_Error_Exception('Unknown datastore type: ' var_export($storeTypeTRUE));
            }
            
/* Datastore from module. */
            
$className SimpleSAML_Module::resolveClass($storeType'Store''SimpleSAML_Store');
            
self::$instance = new $className();
        }

        return 
self::$instance;
    }


    
/**
     * Retrieve a value from the datastore.
     *
     * @param string $type  The datatype.
     * @param string $key  The key.
     * @return mixed|NULL  The value.
     */
    
abstract public function get($type$key);


    
/**
     * Save a value to the datastore.
     *
     * @param string $type  The datatype.
     * @param string $key  The key.
     * @param mixed $value  The value.
     * @param int|NULL $expire  The expiration time (unix timestamp), or NULL if it never expires.
     */
    
abstract public function set($type$key$value$expire NULL);


    
/**
     * Delete a value from the datastore.
     *
     * @param string $type  The datatype.
     * @param string $key  The key.
     */
    
abstract public function delete($type$key);

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.9692 ]--