Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
mooceu /
wp-includes /
Requests /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxr-x--x
Cookie
[ DIR ]
drwxr-x--x
Exception
[ DIR ]
drwxr-x--x
Proxy
[ DIR ]
drwxr-x--x
Response
[ DIR ]
drwxr-x--x
Transport
[ DIR ]
drwxr-x--x
Utility
[ DIR ]
drwxr-x--x
Auth.php
860
B
-rwxr-x--x
Autoload.php
9.12
KB
-rwxr-x--x
Capability.php
652
B
-rwxr-x--x
Cookie.php
14.75
KB
-rwxr-x--x
Exception.php
1.09
KB
-rwxr-x--x
HookManager.php
709
B
-rwxr-x--x
Hooks.php
2.85
KB
-rwxr-x--x
IdnaEncoder.php
12.14
KB
-rwxr-x--x
Ipv6.php
5.51
KB
-rwxr-x--x
Iri.php
28.38
KB
-rwxr-x--x
Port.php
1.47
KB
-rwxr-x--x
Proxy.php
867
B
-rwxr-x--x
Requests.php
33.2
KB
-rwxr-x--x
Response.php
4.18
KB
-rwxr-x--x
Session.php
8.79
KB
-rwxr-x--x
Ssl.php
5.3
KB
-rwxr-x--x
Transport.php
1.51
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Transport.php
<?php /** * Base HTTP transport * * @package Requests\Transport */ namespace WpOrg\Requests; /** * Base HTTP transport * * @package Requests\Transport */ interface Transport { /** * Perform a request * * @param string $url URL to request * @param array $headers Associative array of request headers * @param string|array $data Data to send either as the POST body, or as parameters in the URL for a GET/HEAD * @param array $options Request options, see {@see \WpOrg\Requests\Requests::response()} for documentation * @return string Raw HTTP result */ public function request($url, $headers = [], $data = [], $options = []); /** * Send multiple requests simultaneously * * @param array $requests Request data (array of 'url', 'headers', 'data', 'options') as per {@see \WpOrg\Requests\Transport::request()} * @param array $options Global options, see {@see \WpOrg\Requests\Requests::response()} for documentation * @return array Array of \WpOrg\Requests\Response objects (may contain \WpOrg\Requests\Exception or string responses as well) */ public function request_multiple($requests, $options); /** * Self-test whether the transport can be used. * * The available capabilities to test for can be found in {@see \WpOrg\Requests\Capability}. * * @param array<string, bool> $capabilities Optional. Associative array of capabilities to test against, i.e. `['<capability>' => true]`. * @return bool Whether the transport can be used. */ public static function test($capabilities = []); }
Close