Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
vendor /
guzzlehttp /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
AppendStream.php
5.62
KB
-rw-r--r--
2020-09-30 07:37
BufferStream.php
2.99
KB
-rw-r--r--
2020-09-30 07:37
CachingStream.php
4.16
KB
-rw-r--r--
2020-09-30 07:37
DroppingStream.php
1.06
KB
-rw-r--r--
2020-09-30 07:37
FnStream.php
3.85
KB
-rw-r--r--
2020-09-30 07:37
Header.php
2.13
KB
-rw-r--r--
2020-09-30 07:37
InflateStream.php
1.78
KB
-rw-r--r--
2020-09-30 07:37
LazyOpenStream.php
893
B
-rw-r--r--
2020-09-30 07:37
LimitStream.php
4.11
KB
-rw-r--r--
2020-09-30 07:37
Message.php
8.08
KB
-rw-r--r--
2020-09-30 07:37
MessageTrait.php
5.8
KB
-rw-r--r--
2020-09-30 07:37
MimeType.php
4.99
KB
-rw-r--r--
2020-09-30 07:37
MultipartStream.php
4.61
KB
-rw-r--r--
2020-09-30 07:37
NoSeekStream.php
425
B
-rw-r--r--
2020-09-30 07:37
PumpStream.php
3.97
KB
-rw-r--r--
2020-09-30 07:37
Query.php
3.35
KB
-rw-r--r--
2020-09-30 07:37
Request.php
3.63
KB
-rw-r--r--
2020-09-30 07:37
Response.php
4.7
KB
-rw-r--r--
2020-09-30 07:37
Rfc7230.php
684
B
-rw-r--r--
2020-09-30 07:37
ServerRequest.php
9.61
KB
-rw-r--r--
2020-09-30 07:37
Stream.php
6.65
KB
-rw-r--r--
2020-09-30 07:37
StreamDecoratorTrait.php
3.21
KB
-rw-r--r--
2020-09-30 07:37
StreamWrapper.php
3.68
KB
-rw-r--r--
2020-09-30 07:37
UploadedFile.php
7.43
KB
-rw-r--r--
2020-09-30 07:37
Uri.php
21
KB
-rw-r--r--
2020-09-30 07:37
UriNormalizer.php
8.12
KB
-rw-r--r--
2020-09-30 07:37
UriResolver.php
8.57
KB
-rw-r--r--
2020-09-30 07:37
Utils.php
13.27
KB
-rw-r--r--
2020-09-30 07:37
functions.php
13.08
KB
-rw-r--r--
2020-09-30 07:37
functions_include.php
156
B
-rw-r--r--
2020-09-30 07:37
Save
Rename
<?php namespace GuzzleHttp\Psr7; final class Header { /** * Parse an array of header values containing ";" separated data into an * array of associative arrays representing the header key value pair data * of the header. When a parameter does not contain a value, but just * contains a key, this function will inject a key with a '' string value. * * @param string|array $header Header to parse into components. * * @return array Returns the parsed header values. */ public static function parse($header) { static $trimmed = "\"' \n\t\r"; $params = $matches = []; foreach (self::normalize($header) as $val) { $part = []; foreach (preg_split('/;(?=([^"]*"[^"]*")*[^"]*$)/', $val) as $kvp) { if (preg_match_all('/<[^>]+>|[^=]+/', $kvp, $matches)) { $m = $matches[0]; if (isset($m[1])) { $part[trim($m[0], $trimmed)] = trim($m[1], $trimmed); } else { $part[] = trim($m[0], $trimmed); } } } if ($part) { $params[] = $part; } } return $params; } /** * Converts an array of header values that may contain comma separated * headers into an array of headers with no comma separated values. * * @param string|array $header Header to normalize. * * @return array Returns the normalized header field values. */ public static function normalize($header) { if (!is_array($header)) { return array_map('trim', explode(',', $header)); } $result = []; foreach ($header as $value) { foreach ((array) $value as $v) { if (strpos($v, ',') === false) { $result[] = $v; continue; } foreach (preg_split('/,(?=([^"]*"[^"]*")*[^"]*$)/', $v) as $vv) { $result[] = trim($vv); } } } return $result; } }