!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:     Stats.php (1.91 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/**
 * Statistics handler class.
 *
 * This class is responsible for taking a statistics event and logging it.
 *
 * @package simpleSAMLphp
 * @version $Id$
 */
class SimpleSAML_Stats {

    
/**
     * Whether this class is initialized.
     * @var boolean
     */
    
private static $initialized FALSE;


    
/**
     * The statistics output callbacks.
     * @var array
     */
    
private static $outputs NULL;


    
/**
     * Create an output from a configuration object.
     *
     * @param SimpleSAML_Configuration $config  The configuration object.
     * @return
     */
    
private static function createOutput(SimpleSAML_Configuration $config) {
        
$cls $config->getString('class');
        
$cls SimpleSAML_Module::resolveClass($cls'Stats_Output''SimpleSAML_Stats_Output');

        
$output = new $cls($config);
        return 
$output;
    }


    
/**
     * Initialize the outputs.
     */
    
private static function initOutputs() {

        
$config SimpleSAML_Configuration::getInstance();
        
$outputCfgs $config->getConfigList('statistics.out', array());

        
self::$outputs = array();
        foreach (
$outputCfgs as $cfg) {
            
self::$outputs[] = self::createOutput($cfg);
        }
    }


    
/**
     * Notify about an event.
     *
     * @param string $event  The event.
     * @param array $data  Event data. Optional.
     */
    
public static function log($event, array $data = array()) {
        
assert('is_string($event)');
        
assert('!isset($data["op"])');
        
assert('!isset($data["time"])');
        
assert('!isset($data["_id"])');

        if (!
self::$initialized) {
            
self::initOutputs();
            
self::$initialized TRUE;
        }

        if (empty(
self::$outputs)) {
            
/* Not enabled. */
            
return;
        }

        
$data['op'] = $event;
        
$data['time'] = microtime(TRUE);

        
/* The ID generation is designed to cluster IDs related in time close together. */
        
$int_t = (int)$data['time'];
        
$hd SimpleSAML_Utilities::generateRandomBytes(16);
        
$data['_id'] = sprintf('%016x%s'$int_tbin2hex($hd));

        foreach (
self::$outputs as $out) {
            
$out->emit($data);
        }
    }

}

:: 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: 1.0593 ]--