Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
hamcrest /
hamcrest-php /
generator /
Delete
Unzip
Name
Size
Permission
Date
Action
parts
[ DIR ]
drwxr-xr-x
2016-01-20 09:00
FactoryCall.php
611
B
-rw-r--r--
2016-01-20 09:00
FactoryClass.php
1.47
KB
-rw-r--r--
2016-01-20 09:00
FactoryFile.php
3.03
KB
-rw-r--r--
2016-01-20 09:00
FactoryGenerator.php
2.68
KB
-rw-r--r--
2016-01-20 09:00
FactoryMethod.php
5.52
KB
-rw-r--r--
2016-01-20 09:00
FactoryParameter.php
1.73
KB
-rw-r--r--
2016-01-20 09:00
GlobalFunctionFile.php
931
B
-rw-r--r--
2016-01-20 09:00
StaticMethodFile.php
773
B
-rw-r--r--
2016-01-20 09:00
run.php
1.06
KB
-rw-r--r--
2016-01-20 09:00
Save
Rename
<?php /* Copyright (c) 2009 hamcrest.org */ require __DIR__ . '/../vendor/autoload.php'; /* * Generates the Hamcrest\Matchers factory class and factory functions * from the @factory doctags in the various matchers. */ define('GENERATOR_BASE', __DIR__); define('HAMCREST_BASE', realpath(dirname(GENERATOR_BASE) . DIRECTORY_SEPARATOR . 'hamcrest')); define('GLOBAL_FUNCTIONS_FILE', HAMCREST_BASE . DIRECTORY_SEPARATOR . 'Hamcrest.php'); define('STATIC_MATCHERS_FILE', HAMCREST_BASE . DIRECTORY_SEPARATOR . 'Hamcrest' . DIRECTORY_SEPARATOR . 'Matchers.php'); set_include_path( implode( PATH_SEPARATOR, array( GENERATOR_BASE, HAMCREST_BASE, get_include_path() ) ) ); @unlink(GLOBAL_FUNCTIONS_FILE); @unlink(STATIC_MATCHERS_FILE); $generator = new FactoryGenerator(HAMCREST_BASE . DIRECTORY_SEPARATOR . 'Hamcrest'); $generator->addFactoryFile(new StaticMethodFile(STATIC_MATCHERS_FILE)); $generator->addFactoryFile(new GlobalFunctionFile(GLOBAL_FUNCTIONS_FILE)); $generator->generate(); $generator->write();