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 : 52.15.61.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
react /
dns /
src /
Model /
Delete
Unzip
Name
Size
Permission
Date
Action
HeaderBag.php
1.32
KB
-rw-r--r--
2018-11-11 11:21
Message.php
4.08
KB
-rw-r--r--
2018-11-11 11:21
Record.php
4.27
KB
-rw-r--r--
2018-11-11 11:21
Save
Rename
<?php namespace React\Dns\Model; class HeaderBag { public $attributes = array( 'qdCount' => 0, 'anCount' => 0, 'nsCount' => 0, 'arCount' => 0, 'qr' => 0, 'opcode' => Message::OPCODE_QUERY, 'aa' => 0, 'tc' => 0, 'rd' => 0, 'ra' => 0, 'z' => 0, 'rcode' => Message::RCODE_OK, ); /** * @deprecated unused, exists for BC only */ public $data = ''; public function get($name) { return isset($this->attributes[$name]) ? $this->attributes[$name] : null; } public function set($name, $value) { $this->attributes[$name] = $value; } public function isQuery() { return 0 === $this->attributes['qr']; } public function isResponse() { return 1 === $this->attributes['qr']; } public function isTruncated() { return 1 === $this->attributes['tc']; } public function populateCounts(Message $message) { $this->attributes['qdCount'] = count($message->questions); $this->attributes['anCount'] = count($message->answers); $this->attributes['nsCount'] = count($message->authority); $this->attributes['arCount'] = count($message->additional); } }