Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 13.58.50.163
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
dev /
core /
vendor /
guzzlehttp /
guzzle /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Cookie
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
Handler
[ DIR ]
drwxr-xr-x
BodySummarizer.php
631
B
-rw-r--r--
BodySummarizerInterface.php
233
B
-rw-r--r--
Client.php
17.76
KB
-rw-r--r--
ClientInterface.php
2.83
KB
-rw-r--r--
ClientTrait.php
8.79
KB
-rw-r--r--
HandlerStack.php
8.26
KB
-rw-r--r--
MessageFormatter.php
7.62
KB
-rw-r--r--
MessageFormatterInterface.php
561
B
-rw-r--r--
Middleware.php
10.9
KB
-rw-r--r--
Pool.php
4.61
KB
-rw-r--r--
PrepareBodyMiddleware.php
3.07
KB
-rw-r--r--
RedirectMiddleware.php
7.5
KB
-rw-r--r--
RequestOptions.php
10.32
KB
-rw-r--r--
RetryMiddleware.php
3.52
KB
-rw-r--r--
TransferStats.php
3.14
KB
-rw-r--r--
Utils.php
13
KB
-rw-r--r--
functions.php
5.56
KB
-rw-r--r--
functions_include.php
162
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ClientInterface.php
<?php namespace GuzzleHttp; use GuzzleHttp\Exception\GuzzleException; use GuzzleHttp\Promise\PromiseInterface; use Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\UriInterface; /** * Client interface for sending HTTP requests. */ interface ClientInterface { /** * The Guzzle major version. */ const MAJOR_VERSION = 7; /** * Send an HTTP request. * * @param RequestInterface $request Request to send * @param array $options Request options to apply to the given * request and to the transfer. * * @throws GuzzleException */ public function send(RequestInterface $request, array $options = []): ResponseInterface; /** * Asynchronously send an HTTP request. * * @param RequestInterface $request Request to send * @param array $options Request options to apply to the given * request and to the transfer. */ public function sendAsync(RequestInterface $request, array $options = []): PromiseInterface; /** * Create and send an HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. * * @param string $method HTTP method. * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. * * @throws GuzzleException */ public function request(string $method, $uri, array $options = []): ResponseInterface; /** * Create and send an asynchronous HTTP request. * * Use an absolute path to override the base path of the client, or a * relative path to append to the base path of the client. The URL can * contain the query string as well. Use an array to provide a URL * template and additional variables to use in the URL template expansion. * * @param string $method HTTP method * @param string|UriInterface $uri URI object or string. * @param array $options Request options to apply. */ public function requestAsync(string $method, $uri, array $options = []): PromiseInterface; /** * Get a client configuration option. * * These options include default request options of the client, a "handler" * (if utilized by the concrete client), and a "base_uri" if utilized by * the concrete client. * * @param string|null $option The config option to retrieve. * * @return mixed * * @deprecated ClientInterface::getConfig will be removed in guzzlehttp/guzzle:8.0. */ public function getConfig(?string $option = null); }
Close