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 : 18.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
react /
dns /
src /
Query /
Delete
Unzip
Name
Size
Permission
Date
Action
CachedExecutor.php
1.48
KB
-rw-r--r--
2018-11-11 09:00
CancellationException.php
93
B
-rw-r--r--
2018-11-11 09:00
Executor.php
5.13
KB
-rw-r--r--
2018-11-11 09:00
ExecutorInterface.php
121
B
-rw-r--r--
2018-11-11 09:00
HostsFileExecutor.php
3
KB
-rw-r--r--
2018-11-11 09:00
Query.php
898
B
-rw-r--r--
2018-11-11 09:00
RecordBag.php
503
B
-rw-r--r--
2018-11-11 09:00
RecordCache.php
3.77
KB
-rw-r--r--
2018-11-11 09:00
RetryExecutor.php
2.46
KB
-rw-r--r--
2018-11-11 09:00
TimeoutException.php
81
B
-rw-r--r--
2018-11-11 09:00
TimeoutExecutor.php
913
B
-rw-r--r--
2018-11-11 09:00
UdpTransportExecutor.php
5.49
KB
-rw-r--r--
2018-11-11 09:00
Save
Rename
<?php namespace React\Dns\Query; use React\Dns\Model\Message; class CachedExecutor implements ExecutorInterface { private $executor; private $cache; public function __construct(ExecutorInterface $executor, RecordCache $cache) { $this->executor = $executor; $this->cache = $cache; } public function query($nameserver, Query $query) { $executor = $this->executor; $cache = $this->cache; return $this->cache ->lookup($query) ->then( function ($cachedRecords) use ($query) { return Message::createResponseWithAnswersForQuery($query, $cachedRecords); }, function () use ($executor, $cache, $nameserver, $query) { return $executor ->query($nameserver, $query) ->then(function ($response) use ($cache, $query) { $cache->storeResponseMessage($query->currentTime, $response); return $response; }); } ); } /** * @deprecated unused, exists for BC only */ public function buildResponse(Query $query, array $cachedRecords) { return Message::createResponseWithAnswersForQuery($query, $cachedRecords); } /** * @deprecated unused, exists for BC only */ protected function generateId() { return mt_rand(0, 0xffff); } }