webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
rmccue
/
requests
/
src
/
Exception
/
Http
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Status304.php
0.449KB
edt
ren
Status305.php
0.44KB
edt
ren
Status306.php
0.449KB
edt
ren
Status400.php
0.446KB
edt
ren
Status401.php
0.449KB
edt
ren
Status402.php
0.461KB
edt
ren
Status403.php
0.44KB
edt
ren
Status404.php
0.44KB
edt
ren
Status405.php
0.467KB
edt
ren
Status406.php
0.455KB
edt
ren
Status407.php
0.499KB
edt
ren
Status408.php
0.458KB
edt
ren
Status409.php
0.438KB
edt
ren
Status410.php
0.426KB
edt
ren
Status411.php
0.458KB
edt
ren
Status412.php
0.47KB
edt
ren
Status413.php
0.484KB
edt
ren
Status414.php
0.476KB
edt
ren
Status415.php
0.479KB
edt
ren
Status416.php
0.505KB
edt
ren
Status417.php
0.467KB
edt
ren
Status418.php
0.543KB
edt
ren
Status428.php
0.569KB
edt
ren
Status429.php
0.612KB
edt
ren
Status431.php
0.599KB
edt
ren
Status500.php
0.476KB
edt
ren
Status501.php
0.458KB
edt
ren
Status502.php
0.446KB
edt
ren
Status503.php
0.47KB
edt
ren
Status504.php
0.458KB
edt
ren
Status505.php
0.49KB
edt
ren
Status511.php
0.599KB
edt
ren
StatusUnknown.php
0.947KB
edt
ren
<?php /** * Exception for unknown status responses * * @package Requests\Exceptions */ namespace WpOrg\Requests\Exception\Http; use WpOrg\Requests\Exception\Http; use WpOrg\Requests\Response; /** * Exception for unknown status responses * * @package Requests\Exceptions */ final class StatusUnknown extends Http { /** * HTTP status code * * @var integer|bool Code if available, false if an error occurred */ protected $code = 0; /** * Reason phrase * * @var string */ protected $reason = 'Unknown'; /** * Create a new exception * * If `$data` is an instance of {@see \WpOrg\Requests\Response}, uses the status * code from it. Otherwise, sets as 0 * * @param string|null $reason Reason phrase * @param mixed $data Associated data */ public function __construct($reason = null, $data = null) { if ($data instanceof Response) { $this->code = (int) $data->status_code; } parent::__construct($reason, $data); } }