!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/modules/statistics/bin/   drwxrwxr-x
Free 13.94 GB of 61.93 GB (22.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     loganalyzer.php (1.82 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/env php
<?php


/* This is the base directory of the simpleSAMLphp installation. */
$baseDir dirname(dirname(dirname(dirname(__FILE__))));

/* Add library autoloader. */
require_once($baseDir '/lib/_autoload.php');

/* Initialize the configuration. */
SimpleSAML_Configuration::setConfigDir($baseDir '/config');

SimpleSAML_Utilities::initTimezone();

$progName array_shift($argv);
$debug FALSE;
$dryrun FALSE;

foreach(
$argv as $a) {
    if(
strlen($a) === 0) continue;

    if(
strpos($a'=') !== FALSE) {
        
$p strpos($a'=');
        
$v substr($a$p 1);
        
$a substr($a0$p);
    } else {
        
$v NULL;
    }

    
/* Map short options to long options. */
    
$shortOptMap = array(
        
'-d' => '--debug',
    );
    if(
array_key_exists($a$shortOptMap))  $a $shortOptMap[$a];

    switch(
$a) {
        case 
'--help':
            
printHelp();
            exit(
0);
        case 
'--debug':
            
$debug TRUE;
            break;
        case 
'--dry-run':
            
$dryrun TRUE;
            break;
        default:
            echo(
'Unknown option: ' $a "\n");
            echo(
'Please run `' $progName ' --help` for usage information.' "\n");
            exit(
1);
        }
}

$aggregator = new sspmod_statistics_Aggregator(TRUE);
$aggregator->dumpConfig();
$aggregator->debugInfo();
$results $aggregator->aggregate($debug);
$aggregator->debugInfo();

if (!
$dryrun) {
    
$aggregator->store($results);
}


foreach (
$results AS $slot => $val) {
     foreach (
$val AS $sp => $no) {
         echo 
$sp " " count($no) . " - ";
     }
     echo 
"\n";
}




/**
 * This function prints the help output.
 */
function printHelp() {
    global 
$progName;

    
/*   '======================================================================' */
    
echo('Usage: ' $progName ' [options]

This program parses and aggregates SimpleSAMLphp log files.

Options:
    -d, --debug            Used when configuring the log file syntax. See doc.
    --dry-run            Aggregate but do not store the results.

'
);
}


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