!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/queuepro/vendor/laravel/framework/src/Illuminate/Foundation/Console/   drwxrwxr-x
Free 13.14 GB of 57.97 GB (22.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ServeCommand.php (5.5 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Foundation\Console;

use 
Illuminate\Console\Command;
use 
Illuminate\Support\Env;
use 
Symfony\Component\Console\Input\InputOption;
use 
Symfony\Component\Process\PhpExecutableFinder;
use 
Symfony\Component\Process\Process;

class 
ServeCommand extends Command
{
    
/**
     * The console command name.
     *
     * @var string
     */
    
protected $name 'serve';

    
/**
     * The name of the console command.
     *
     * This name is used to identify the command during lazy loading.
     *
     * @var string|null
     */
    
protected static $defaultName 'serve';

    
/**
     * The console command description.
     *
     * @var string
     */
    
protected $description 'Serve the application on the PHP development server';

    
/**
     * The current port offset.
     *
     * @var int
     */
    
protected $portOffset 0;

    
/**
     * Execute the console command.
     *
     * @return int
     *
     * @throws \Exception
     */
    
public function handle()
    {
        
$this->line("<info>Starting Laravel development server:</info> http://{$this->host()}:{$this->port()}");

        
$environmentFile $this->option('env')
                            ? 
base_path('.env').'.'.$this->option('env')
                            : 
base_path('.env');

        
$hasEnvironment file_exists($environmentFile);

        
$environmentLastModified $hasEnvironment
                            
filemtime($environmentFile)
                            : 
now()->addDays(30)->getTimestamp();

        
$process $this->startProcess($hasEnvironment);

        while (
$process->isRunning()) {
            if (
$hasEnvironment) {
                
clearstatcache(false$environmentFile);
            }

            if (! 
$this->option('no-reload') &&
                
$hasEnvironment &&
                
filemtime($environmentFile) > $environmentLastModified) {
                
$environmentLastModified filemtime($environmentFile);

                
$this->comment('Environment modified. Restarting server...');

                
$process->stop(5);

                
$process $this->startProcess($hasEnvironment);
            }

            
usleep(500 1000);
        }

        
$status $process->getExitCode();

        if (
$status && $this->canTryAnotherPort()) {
            
$this->portOffset += 1;

            return 
$this->handle();
        }

        return 
$status;
    }

    
/**
     * Start a new server process.
     *
     * @param  bool  $hasEnvironment
     * @return \Symfony\Component\Process\Process
     */
    
protected function startProcess($hasEnvironment)
    {
        
$process = new Process($this->serverCommand(), public_path(), collect($_ENV)->mapWithKeys(function ($value$key) use ($hasEnvironment) {
            if (
$this->option('no-reload') || ! $hasEnvironment) {
                return [
$key => $value];
            }

            return 
in_array($key, [
                
'APP_ENV',
                
'LARAVEL_SAIL',
                
'PHP_CLI_SERVER_WORKERS',
                
'PHP_IDE_CONFIG',
                
'SYSTEMROOT',
                
'XDEBUG_CONFIG',
                
'XDEBUG_MODE',
                
'XDEBUG_SESSION',
            ]) ? [
$key => $value] : [$key => false];
        })->
all());

        
$process->start(function ($type$buffer) {
            
$this->output->write($buffer);
        });

        return 
$process;
    }

    
/**
     * Get the full server command.
     *
     * @return array
     */
    
protected function serverCommand()
    {
        
$server file_exists(base_path('server.php'))
            ? 
base_path('server.php')
            : 
__DIR__.'/../resources/server.php';

        return [
            (new 
PhpExecutableFinder)->find(false),
            
'-S',
            
$this->host().':'.$this->port(),
            
$server,
        ];
    }

    
/**
     * Get the host for the command.
     *
     * @return string
     */
    
protected function host()
    {
        [
$host, ] = $this->getHostAndPort();

        return 
$host;
    }

    
/**
     * Get the port for the command.
     *
     * @return string
     */
    
protected function port()
    {
        
$port $this->input->getOption('port');

        if (
is_null($port)) {
            [, 
$port] = $this->getHostAndPort();
        }

        
$port $port ?: 8000;

        return 
$port $this->portOffset;
    }

    
/**
     * Get the host and port from the host option string.
     *
     * @return array
     */
    
protected function getHostAndPort()
    {
        
$hostParts explode(':'$this->input->getOption('host'));

        return [
            
$hostParts[0],
            
$hostParts[1] ?? null,
        ];
    }

    
/**
     * Check if the command has reached its max amount of port tries.
     *
     * @return bool
     */
    
protected function canTryAnotherPort()
    {
        return 
is_null($this->input->getOption('port')) &&
               (
$this->input->getOption('tries') > $this->portOffset);
    }

    
/**
     * Get the console command options.
     *
     * @return array
     */
    
protected function getOptions()
    {
        return [
            [
'host'nullInputOption::VALUE_OPTIONAL'The host address to serve the application on''127.0.0.1'],
            [
'port'nullInputOption::VALUE_OPTIONAL'The port to serve the application on'Env::get('SERVER_PORT')],
            [
'tries'nullInputOption::VALUE_OPTIONAL'The max number of ports to attempt to serve from'10],
            [
'no-reload'nullInputOption::VALUE_NONE'Do not reload the development server on .env file changes'],
        ];
    }
}

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