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 : 216.73.216.124
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
symfony /
http-kernel /
Tests /
Exception /
Delete
Unzip
Name
Size
Permission
Date
Action
AccessDeniedHttpExceptionTest.php
302
B
-rw-r--r--
2018-11-30 09:00
BadRequestHttpExceptionTest.php
296
B
-rw-r--r--
2018-11-30 09:00
ConflictHttpExceptionTest.php
290
B
-rw-r--r--
2018-11-30 09:00
GoneHttpExceptionTest.php
278
B
-rw-r--r--
2018-11-30 09:00
HttpExceptionTest.php
1.29
KB
-rw-r--r--
2018-11-30 09:00
LengthRequiredHttpExceptionTest.php
308
B
-rw-r--r--
2018-11-30 09:00
MethodNotAllowedHttpExceptionTest.php
1.04
KB
-rw-r--r--
2018-11-30 09:00
NotAcceptableHttpExceptionTest.php
305
B
-rw-r--r--
2018-11-30 09:00
NotFoundHttpExceptionTest.php
290
B
-rw-r--r--
2018-11-30 09:00
PreconditionFailedHttpExceptionTest.php
320
B
-rw-r--r--
2018-11-30 09:00
PreconditionRequiredHttpExceptionTest.php
326
B
-rw-r--r--
2018-11-30 09:00
ServiceUnavailableHttpExceptionTest.php
1.13
KB
-rw-r--r--
2018-11-30 09:00
TooManyRequestsHttpExceptionTest.php
1.11
KB
-rw-r--r--
2018-11-30 09:00
UnauthorizedHttpExceptionTest.php
1.04
KB
-rw-r--r--
2018-11-30 09:00
UnprocessableEntityHttpExceptionTest.php
323
B
-rw-r--r--
2018-11-30 09:00
UnsupportedMediaTypeHttpExceptionTest.php
326
B
-rw-r--r--
2018-11-30 09:00
Save
Rename
<?php namespace Symfony\Component\HttpKernel\Tests\Exception; use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException; class UnauthorizedHttpExceptionTest extends HttpExceptionTest { public function testHeadersDefault() { $exception = new UnauthorizedHttpException('Challenge'); $this->assertSame(array('WWW-Authenticate' => 'Challenge'), $exception->getHeaders()); } public function testWithHeaderConstruct() { $headers = array( 'Cache-Control' => 'public, s-maxage=1200', ); $exception = new UnauthorizedHttpException('Challenge', null, null, null, $headers); $headers['WWW-Authenticate'] = 'Challenge'; $this->assertSame($headers, $exception->getHeaders()); } /** * @dataProvider headerDataProvider */ public function testHeadersSetter($headers) { $exception = new UnauthorizedHttpException('Challenge'); $exception->setHeaders($headers); $this->assertSame($headers, $exception->getHeaders()); } }