!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/php/Symfony/Component/DependencyInjection/Compiler/   drwxr-xr-x
Free 83.26 GB of 96.73 GB (86.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <[email protected]>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\DependencyInjection\Compiler;

use 
Symfony\Component\DependencyInjection\Alias;
use 
Symfony\Component\DependencyInjection\ContainerBuilder;
use 
Symfony\Component\DependencyInjection\ContainerInterface;
use 
Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use 
Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException;
use 
Symfony\Component\DependencyInjection\Reference;

/**
 * Overwrites a service but keeps the overridden one.
 *
 * @author Christophe Coevoet <[email protected]>
 * @author Fabien Potencier <[email protected]>
 * @author Diego Saint Esteben <[email protected]>
 */
class DecoratorServicePass extends AbstractRecursivePass
{
    private 
$innerId '.inner';

    public function 
__construct(?string $innerId '.inner')
    {
        if (
< \func_num_args()) {
            
trigger_deprecation('symfony/dependency-injection''5.3''Configuring "%s" is deprecated.'__CLASS__);
        }

        
$this->innerId $innerId;
    }

    public function 
process(ContainerBuilder $container)
    {
        
$definitions = new \SplPriorityQueue();
        
$order = \PHP_INT_MAX;

        foreach (
$container->getDefinitions() as $id => $definition) {
            if (!
$decorated $definition->getDecoratedService()) {
                continue;
            }
            
$definitions->insert([$id$definition], [$decorated[2], --$order]);
        }
        
$decoratingDefinitions = [];

        foreach (
$definitions as [$id$definition]) {
            
$decoratedService $definition->getDecoratedService();
            [
$inner$renamedId] = $decoratedService;
            
$invalidBehavior $decoratedService[3] ?? ContainerInterface::EXCEPTION_ON_INVALID_REFERENCE;

            
$definition->setDecoratedService(null);

            if (!
$renamedId) {
                
$renamedId $id.'.inner';
            }

            
$this->currentId $renamedId;
            
$this->processValue($definition);

            
$definition->innerServiceId $renamedId;
            
$definition->decorationOnInvalid $invalidBehavior;

            
// we create a new alias/service for the service we are replacing
            // to be able to reference it in the new one
            
if ($container->hasAlias($inner)) {
                
$alias $container->getAlias($inner);
                
$public $alias->isPublic();
                
$container->setAlias($renamedId, new Alias((string) $aliasfalse));
                
$decoratedDefinition $container->findDefinition($alias);
            } elseif (
$container->hasDefinition($inner)) {
                
$decoratedDefinition $container->getDefinition($inner);
                
$public $decoratedDefinition->isPublic();
                
$decoratedDefinition->setPublic(false);
                
$container->setDefinition($renamedId$decoratedDefinition);
                
$decoratingDefinitions[$inner] = $decoratedDefinition;
            } elseif (
ContainerInterface::IGNORE_ON_INVALID_REFERENCE === $invalidBehavior) {
                
$container->removeDefinition($id);
                continue;
            } elseif (
ContainerInterface::NULL_ON_INVALID_REFERENCE === $invalidBehavior) {
                
$public $definition->isPublic();
                
$decoratedDefinition null;
            } else {
                throw new 
ServiceNotFoundException($inner$id);
            }

            if (
$decoratedDefinition && $decoratedDefinition->isSynthetic()) {
                throw new 
InvalidArgumentException(sprintf('A synthetic service cannot be decorated: service "%s" cannot decorate "%s".'$id$inner));
            }

            if (isset(
$decoratingDefinitions[$inner])) {
                
$decoratingDefinition $decoratingDefinitions[$inner];

                
$decoratingTags $decoratingDefinition->getTags();
                
$resetTags = [];

                
// container.service_locator and container.service_subscriber have special logic and they must not be transferred out to decorators
                
foreach (['container.service_locator''container.service_subscriber'] as $containerTag) {
                    if (isset(
$decoratingTags[$containerTag])) {
                        
$resetTags[$containerTag] = $decoratingTags[$containerTag];
                        unset(
$decoratingTags[$containerTag]);
                    }
                }

                
$definition->setTags(array_merge($decoratingTags$definition->getTags()));
                
$decoratingDefinition->setTags($resetTags);
                
$decoratingDefinitions[$inner] = $definition;
            }

            
$container->setAlias($inner$id)->setPublic($public);
        }
    }

    protected function 
processValue($valuebool $isRoot false)
    {
        if (
$value instanceof Reference && $this->innerId === (string) $value) {
            return new 
Reference($this->currentId$value->getInvalidBehavior());
        }

        return 
parent::processValue($value$isRoot);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

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