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.19.255.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
1 /
vendor /
symfony /
http-kernel /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessDeniedHttpException.php
858
B
-rw-r--r--
2020-11-17 16:24
BadRequestHttpException.php
803
B
-rw-r--r--
2020-11-17 16:24
ConflictHttpException.php
801
B
-rw-r--r--
2020-11-17 16:24
ControllerDoesNotReturnResponseException.php
2.28
KB
-rw-r--r--
2020-11-17 16:24
GoneHttpException.php
797
B
-rw-r--r--
2020-11-17 16:24
HttpException.php
1.11
KB
-rw-r--r--
2020-11-17 16:24
HttpExceptionInterface.php
710
B
-rw-r--r--
2020-11-17 16:24
LengthRequiredHttpException.php
807
B
-rw-r--r--
2020-11-17 16:24
MethodNotAllowedHttpException.php
954
B
-rw-r--r--
2020-11-17 16:24
NotAcceptableHttpException.php
806
B
-rw-r--r--
2020-11-17 16:24
NotFoundHttpException.php
808
B
-rw-r--r--
2020-11-17 16:24
PreconditionFailedHttpException.php
811
B
-rw-r--r--
2020-11-17 16:24
PreconditionRequiredHttpException.php
859
B
-rw-r--r--
2020-11-17 16:24
ServiceUnavailableHttpException.php
1.01
KB
-rw-r--r--
2020-11-17 16:24
TooManyRequestsHttpException.php
1.06
KB
-rw-r--r--
2020-11-17 16:24
UnauthorizedHttpException.php
950
B
-rw-r--r--
2020-11-17 16:24
UnexpectedSessionUsageException.php
416
B
-rw-r--r--
2020-11-17 16:24
UnprocessableEntityHttpException.php
821
B
-rw-r--r--
2020-11-17 16:24
UnsupportedMediaTypeHttpException.php
813
B
-rw-r--r--
2020-11-17 16:24
Save
Rename
<?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\Component\HttpKernel\Exception; /** * @author Ben Ramsey <ben@benramsey.com> */ class ServiceUnavailableHttpException extends HttpException { /** * @param int|string $retryAfter The number of seconds or HTTP-date after which the request may be retried * @param string $message The internal exception message * @param \Throwable $previous The previous exception * @param int $code The internal exception code */ public function __construct($retryAfter = null, string $message = null, \Throwable $previous = null, ?int $code = 0, array $headers = []) { if ($retryAfter) { $headers['Retry-After'] = $retryAfter; } parent::__construct(503, $message, $previous, $headers, $code); } }