!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/phpmyadmin/libraries/   drwxr-xr-x
Free 83.35 GB of 96.73 GB (86.17%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     services_loader.php (1.58 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Symfony\Component\DependencyInjection\Loader\Configurator;

use 
Symfony\Component\DependencyInjection\Reference;
use function 
is_string;
use function 
substr;

return static function (
ContainerConfigurator $configurator) {
    
$services $configurator->services();
    
$loadServices = static function (array $servicesFileServicesConfigurator $services): void {
        foreach (
$servicesFile['services'] as $serviceName => $service) {
            if (
is_string($service)) {
                
$services->alias($serviceName$service);
                continue;
            }
            
$theService $services->set($serviceName$service['class'] ?? null);
            if (isset(
$service['arguments'])) {// !== null check
                
foreach ($service['arguments'] as &$argumentName) {
                    if (
$argumentName[0] !== '@') {
                        continue;
                    }

                    
$services->alias($serviceNamesubstr($argumentName1));
                    
$argumentName = new Reference(substr($argumentName1));
                }
                
$theService->args($service['arguments']);
            }
            if (! isset(
$service['factory'])) {
                continue;
            }
            
// !== null check
            
$theService->factory($service['factory']);
        }
    };

    
$servicesFile = include ROOT_PATH 'libraries/services.php';
    
$loadServices($servicesFile$services);
    
$servicesFile = include ROOT_PATH 'libraries/services_controllers.php';
    
$loadServices($servicesFile$services);
};

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0049 ]--