!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.68 (Linux) PHP/7.4.33. PHP/7.4.33 

uname -a: Linux bjb2293782.nichost.ru 6.6.151-1.el8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Aug 10
11:16:02 MSK 2026 x86_64
 

uid=12584(bjb2293782) gid=12584(bjb2293782) groups=12584(bjb2293782)  

Safe-mode: OFF (not secure)

/usr/share/php/Composer/Command/   drwxr-xr-x
Free 60.66 GB of 99.95 GB (60.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     AuditCommand.php (3.4 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);

/*
 * This file is part of Composer.
 *
 * (c) Nils Adermann <naderman@naderman.de>
 *     Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Composer\Command;

use 
Composer\Composer;
use 
Composer\Repository\RepositorySet;
use 
Composer\Repository\RepositoryUtils;
use 
Symfony\Component\Console\Input\InputInterface;
use 
Symfony\Component\Console\Output\OutputInterface;
use 
Composer\Package\PackageInterface;
use 
Composer\Repository\InstalledRepository;
use 
Composer\Advisory\Auditor;
use 
Composer\Console\Input\InputOption;

class 
AuditCommand extends BaseCommand
{
    protected function 
configure(): void
    
{
        
$this
            
->setName('audit')
            ->
setDescription('Checks for security vulnerability advisories for installed packages')
            ->
setDefinition([
                new 
InputOption('no-dev'nullInputOption::VALUE_NONE'Disables auditing of require-dev packages.'),
                new 
InputOption('format''f'InputOption::VALUE_REQUIRED'Output format. Must be "table", "plain", "json", or "summary".'Auditor::FORMAT_TABLEAuditor::FORMATS),
                new 
InputOption('locked'nullInputOption::VALUE_NONE'Audit based on the lock file instead of the installed packages.'),
            ])
            ->
setHelp(
                <<<EOT
The <info>audit</info> command checks for security vulnerability advisories for installed packages.

If you do not want to include dev dependencies in the audit you can omit them with --no-dev

Read more at https://getcomposer.org/doc/03-cli.md#audit
EOT
            )
        ;
    }

    protected function 
execute(InputInterface $inputOutputInterface $output)
    {
        
$composer $this->requireComposer();
        
$packages $this->getPackages($composer$input);

        if (
count($packages) === 0) {
            
$this->getIO()->writeError('No packages - skipping audit.');

            return 
0;
        }

        
$auditor = new Auditor();
        
$repoSet = new RepositorySet();
        foreach (
$composer->getRepositoryManager()->getRepositories() as $repo) {
            
$repoSet->addRepository($repo);
        }

        
$auditConfig $composer->getConfig()->get('audit');

        return 
min(255$auditor->audit($this->getIO(), $repoSet$packages$this->getAuditFormat($input'format'), false$auditConfig['ignore'] ?? [], $auditConfig['abandoned'] ?? Auditor::ABANDONED_REPORT));
    }

    
/**
     * @return PackageInterface[]
     */
    
private function getPackages(Composer $composerInputInterface $input): array
    {
        if (
$input->getOption('locked')) {
            if (!
$composer->getLocker()->isLocked()) {
                throw new \
UnexpectedValueException('Valid composer.json and composer.lock files are required to run this command with --locked');
            }
            
$locker $composer->getLocker();

            return 
$locker->getLockedRepository(!$input->getOption('no-dev'))->getPackages();
        }

        
$rootPkg $composer->getPackage();
        
$installedRepo = new InstalledRepository([$composer->getRepositoryManager()->getLocalRepository()]);

        if (
$input->getOption('no-dev')) {
            return 
RepositoryUtils::filterRequiredPackages($installedRepo->getPackages(), $rootPkg);
        }

        return 
$installedRepo->getPackages();
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0043 ]--