!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/laravel/framework/src/Illuminate/Console/   drwxr-xr-x
Free 116.5 GB of 200.55 GB (58.09%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

namespace Illuminate\Console;

use 
Illuminate\Contracts\Events\Dispatcher;
use 
Illuminate\Contracts\Container\Container;
use 
Symfony\Component\Console\Input\ArrayInput;
use 
Symfony\Component\Console\Input\InputOption;
use 
Symfony\Component\Console\Output\BufferedOutput;
use 
Symfony\Component\Console\Application as SymfonyApplication;
use 
Symfony\Component\Console\Command\Command as SymfonyCommand;
use 
Illuminate\Contracts\Console\Application as ApplicationContract;

class 
Application extends SymfonyApplication implements ApplicationContract
{
    
/**
     * The Laravel application instance.
     *
     * @var \Illuminate\Contracts\Container\Container
     */
    
protected $laravel;

    
/**
     * The output from the previous command.
     *
     * @var \Symfony\Component\Console\Output\BufferedOutput
     */
    
protected $lastOutput;

    
/**
     * Create a new Artisan console application.
     *
     * @param  \Illuminate\Contracts\Container\Container  $laravel
     * @param  \Illuminate\Contracts\Events\Dispatcher  $events
     * @param  string  $version
     * @return void
     */
    
public function __construct(Container $laravelDispatcher $events$version)
    {
        
parent::__construct('Laravel Framework'$version);

        
$this->laravel $laravel;
        
$this->setAutoExit(false);
        
$this->setCatchExceptions(false);

        
$events->fire(new Events\ArtisanStarting($this));
    }

    
/**
     * Run an Artisan console command by name.
     *
     * @param  string  $command
     * @param  array  $parameters
     * @return int
     */
    
public function call($command, array $parameters = [])
    {
        
$parameters collect($parameters)->prepend($command);

        
$this->lastOutput = new BufferedOutput;

        
$this->setCatchExceptions(false);

        
$result $this->run(new ArrayInput($parameters->toArray()), $this->lastOutput);

        
$this->setCatchExceptions(true);

        return 
$result;
    }

    
/**
     * Get the output for the last run command.
     *
     * @return string
     */
    
public function output()
    {
        return 
$this->lastOutput $this->lastOutput->fetch() : '';
    }

    
/**
     * Add a command to the console.
     *
     * @param  \Symfony\Component\Console\Command\Command  $command
     * @return \Symfony\Component\Console\Command\Command
     */
    
public function add(SymfonyCommand $command)
    {
        if (
$command instanceof Command) {
            
$command->setLaravel($this->laravel);
        }

        return 
$this->addToParent($command);
    }

    
/**
     * Add the command to the parent instance.
     *
     * @param  \Symfony\Component\Console\Command\Command  $command
     * @return \Symfony\Component\Console\Command\Command
     */
    
protected function addToParent(SymfonyCommand $command)
    {
        return 
parent::add($command);
    }

    
/**
     * Add a command, resolving through the application.
     *
     * @param  string  $command
     * @return \Symfony\Component\Console\Command\Command
     */
    
public function resolve($command)
    {
        return 
$this->add($this->laravel->make($command));
    }

    
/**
     * Resolve an array of commands through the application.
     *
     * @param  array|mixed  $commands
     * @return $this
     */
    
public function resolveCommands($commands)
    {
        
$commands is_array($commands) ? $commands func_get_args();

        foreach (
$commands as $command) {
            
$this->resolve($command);
        }

        return 
$this;
    }

    
/**
     * Get the default input definitions for the applications.
     *
     * This is used to add the --env option to every available command.
     *
     * @return \Symfony\Component\Console\Input\InputDefinition
     */
    
protected function getDefaultInputDefinition()
    {
        
$definition parent::getDefaultInputDefinition();

        
$definition->addOption($this->getEnvironmentOption());

        return 
$definition;
    }

    
/**
     * Get the global environment option for the definition.
     *
     * @return \Symfony\Component\Console\Input\InputOption
     */
    
protected function getEnvironmentOption()
    {
        
$message 'The environment the command should run under.';

        return new 
InputOption('--env'nullInputOption::VALUE_OPTIONAL$message);
    }

    
/**
     * Get the Laravel application instance.
     *
     * @return \Illuminate\Contracts\Foundation\Application
     */
    
public function getLaravel()
    {
        return 
$this->laravel;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0121 ]--