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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smm.picotech.app/public_html/vendor/symfony/console/Command/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

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

namespace Symfony\Component\Console\Command;

use 
Symfony\Component\Console\Completion\CompletionInput;
use 
Symfony\Component\Console\Completion\CompletionSuggestions;
use 
Symfony\Component\Console\Input\InputArgument;
use 
Symfony\Component\Console\Input\InputInterface;
use 
Symfony\Component\Console\Input\InputOption;
use 
Symfony\Component\Console\Output\ConsoleOutputInterface;
use 
Symfony\Component\Console\Output\OutputInterface;
use 
Symfony\Component\Process\Process;

/**
 * Dumps the completion script for the current shell.
 *
 * @author Wouter de Jong <wouter@wouterj.nl>
 */
final class DumpCompletionCommand extends Command
{
    protected static 
$defaultName 'completion';
    protected static 
$defaultDescription 'Dump the shell completion script';

    public function 
complete(CompletionInput $inputCompletionSuggestions $suggestions): void
    
{
        if (
$input->mustSuggestArgumentValuesFor('shell')) {
            
$suggestions->suggestValues($this->getSupportedShells());
        }
    }

    protected function 
configure()
    {
        
$fullCommand $_SERVER['PHP_SELF'];
        
$commandName basename($fullCommand);
        
$fullCommand = @realpath($fullCommand) ?: $fullCommand;

        
$this
            
->setHelp(<<<EOH
The <info>%command.name%</> command dumps the shell completion script required
to use shell autocompletion (currently only bash completion is supported).

<comment>Static installation
-------------------</>

Dump the script to a global completion file and restart your shell:

    <info>%command.full_name% bash | sudo tee /etc/bash_completion.d/
{$commandName}</>

Or dump the script to a local file and source it:

    <info>%command.full_name% bash > completion.sh</>

    <comment># source the file whenever you use the project</>
    <info>source completion.sh</>

    <comment># or add this line at the end of your "~/.bashrc" file:</>
    <info>source /path/to/completion.sh</>

<comment>Dynamic installation
--------------------</>

Add this to the end of your shell configuration file (e.g. <info>"~/.bashrc"</>):

    <info>eval "$(
{$fullCommand} completion bash)"</>
EOH
            )
            ->
addArgument('shell'InputArgument::OPTIONAL'The shell type (e.g. "bash"), the value of the "$SHELL" env var will be used if this is not given')
            ->
addOption('debug'nullInputOption::VALUE_NONE'Tail the completion debug log')
        ;
    }

    protected function 
execute(InputInterface $inputOutputInterface $output): int
    
{
        
$commandName basename($_SERVER['argv'][0]);

        if (
$input->getOption('debug')) {
            
$this->tailDebugLog($commandName$output);

            return 
0;
        }

        
$shell $input->getArgument('shell') ?? self::guessShell();
        
$completionFile __DIR__.'/../Resources/completion.'.$shell;
        if (!
file_exists($completionFile)) {
            
$supportedShells $this->getSupportedShells();

            if (
$output instanceof ConsoleOutputInterface) {
                
$output $output->getErrorOutput();
            }
            if (
$shell) {
                
$output->writeln(sprintf('<error>Detected shell "%s", which is not supported by Symfony shell completion (supported shells: "%s").</>'$shellimplode('", "'$supportedShells)));
            } else {
                
$output->writeln(sprintf('<error>Shell not detected, Symfony shell completion only supports "%s").</>'implode('", "'$supportedShells)));
            }

            return 
2;
        }

        
$output->write(str_replace(['{{ COMMAND_NAME }}''{{ VERSION }}'], [$commandName$this->getApplication()->getVersion()], file_get_contents($completionFile)));

        return 
0;
    }

    private static function 
guessShell(): string
    
{
        return 
basename($_SERVER['SHELL'] ?? '');
    }

    private function 
tailDebugLog(string $commandNameOutputInterface $output): void
    
{
        
$debugFile sys_get_temp_dir().'/sf_'.$commandName.'.log';
        if (!
file_exists($debugFile)) {
            
touch($debugFile);
        }
        
$process = new Process(['tail''-f'$debugFile], nullnullnull0);
        
$process->run(function (string $typestring $line) use ($output): void {
            
$output->write($line);
        });
    }

    
/**
     * @return string[]
     */
    
private function getSupportedShells(): array
    {
        
$shells = [];

        foreach (new 
\DirectoryIterator(__DIR__.'/../Resources/') as $file) {
            if (
str_starts_with($file->getBasename(), 'completion.') && $file->isFile()) {
                
$shells[] = $file->getExtension();
            }
        }

        return 
$shells;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

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