webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Matcher
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Doctrine
--
ren
Matcher.php
0.208KB
edt
ren
PropertyMatcher.php
0.675KB
edt
ren
PropertyNameMatcher.php
0.492KB
edt
ren
PropertyTypeMatcher.php
1.285KB
edt
ren
<?php namespace DeepCopy\Matcher; /** * @final */ class PropertyMatcher implements Matcher { /** * @var string */ private $class; /** * @var string */ private $property; /** * @param string $class Class name * @param string $property Property name */ public function __construct($class, $property) { $this->class = $class; $this->property = $property; } /** * Matches a specific property of a specific class. * * {@inheritdoc} */ public function matches($object, $property) { return ($object instanceof $this->class) && $property == $this->property; } }