!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_led/php/vendor/siu/security-multitool/tests/   drwxrwxr-x
Free 15.68 GB of 61.93 GB (25.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Bootstrap.php (2.68 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * SecurityMultiTool
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * https://github.com/padraic/SecurityMultiTool/blob/master/LICENSE
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to padraic@php.net so we can send you a copy immediately.
 *
 * @category   SecurityMultiTool
 * @package    SecurityMultiTool
 * @subpackage UnitTests
 * @copyright  Copyright (c) 2013 Pádraic Brady (http://blog.astrumfutura.com)
 * @license    http://github.com/padraic/SecurityMultiTool/master/LICENSE New BSD License
 */

/*
 * Set error reporting to the level to which SecurityMultiTool code must comply.
 */
error_reporting(E_ALL);

/*
 * Determine the root, library, and tests directories of the framework
 * distribution.
 */
$root    realpath(dirname(dirname(__FILE__)));
$library "$root/library";
$tests   "$root/tests";

/**
 * Check that --dev composer installation was done
 */
if (!file_exists($root '/vendor/autoload.php')) {
    throw new 
Exception(
        
'Please run "php composer.phar install --dev" in root directory '
        
'to setup unit test dependencies before running the tests'
    
);
}

/*
 * Prepend the SecurityMultiTool library/ and tests/ directories to the
 * include_path. This allows the tests to run out of the box and helps prevent
 * loading other copies of the code and tests that would supercede
 * this copy.
 */
$path = array(
    
$library,
    
$tests,
    
get_include_path(),
);
set_include_path(implode(PATH_SEPARATOR$path));

if (
defined('TESTS_GENERATE_REPORT') && TESTS_GENERATE_REPORT === true &&
    
version_compare(PHPUnit_Runner_Version::id(), '3.1.6''>=')) {

    
/*
     * Add SecurityMultiTool library/ directory to the PHPUnit code coverage
     * whitelist. This has the effect that only production code source files
     * appear in the code coverage report and that all production code source
     * files, even those that are not covered by a test yet, are processed.
     */
    
PHPUnit_Util_Filter::addDirectoryToWhitelist($library);

    
/*
     * Omit from code coverage reports the contents of the tests directory
     */
    
foreach (array('.php''.phtml''.csv''.inc') as $suffix) {
        
PHPUnit_Util_Filter::addDirectoryToFilter($tests$suffix);
    }
    
PHPUnit_Util_Filter::addDirectoryToFilter(PEAR_INSTALL_DIR);
    
PHPUnit_Util_Filter::addDirectoryToFilter(PHP_LIBDIR);
}

require 
__DIR__.'/../vendor/autoload.php';

/*
 * Unset global variables that are no longer needed.
 */
unset($root$library$tests$path);


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

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

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.2925 ]--