webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
symfony
/
var-dumper
/
Caster
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AmqpCaster.php
6.718KB
edt
ren
ArgsStub.php
2.244KB
edt
ren
Caster.php
6.727KB
edt
ren
ClassStub.php
3.756KB
edt
ren
ConstStub.php
0.723KB
edt
ren
CutArrayStub.php
0.68KB
edt
ren
CutStub.php
1.885KB
edt
ren
DOMCaster.php
9.35KB
edt
ren
DateCaster.php
4.938KB
edt
ren
DoctrineCaster.php
1.741KB
edt
ren
DsCaster.php
1.553KB
edt
ren
DsPairStub.php
0.61KB
edt
ren
EnumStub.php
0.622KB
edt
ren
ExceptionCaster.php
16.383KB
edt
ren
FFICaster.php
5.167KB
edt
ren
FiberCaster.php
1.073KB
edt
ren
FrameStub.php
0.723KB
edt
ren
GmpCaster.php
0.731KB
edt
ren
ImagineCaster.php
0.927KB
edt
ren
ImgStub.php
0.622KB
edt
ren
IntlCaster.php
8.903KB
edt
ren
LinkStub.php
3.287KB
edt
ren
MemcachedCaster.php
2.269KB
edt
ren
MysqliCaster.php
0.675KB
edt
ren
PdoCaster.php
3.544KB
edt
ren
PgSqlCaster.php
5.464KB
edt
ren
ProxyManagerCaster.php
0.74KB
edt
ren
RdKafkaCaster.php
4.97KB
edt
ren
RedisCaster.php
5.435KB
edt
ren
ReflectionCaster.php
15.217KB
edt
ren
ResourceCaster.php
3.071KB
edt
ren
ScalarStub.php
0.541KB
edt
ren
SplCaster.php
8.126KB
edt
ren
StubCaster.php
2.475KB
edt
ren
SymfonyCaster.php
3.686KB
edt
ren
TraceStub.php
0.941KB
edt
ren
UninitializedStub.php
0.601KB
edt
ren
UuidCaster.php
0.652KB
edt
ren
XmlReaderCaster.php
3.335KB
edt
ren
XmlResourceCaster.php
2.521KB
edt
ren
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\VarDumper\Caster; use Symfony\Component\VarDumper\Cloner\Stub; /** * Casts common resource types to array representation. * * @author Nicolas Grekas <p@tchwork.com> * * @final */ class ResourceCaster { public static function castCurl(\CurlHandle $h, array $a, Stub $stub, bool $isNested): array { return curl_getinfo($h); } /** * @return array */ public static function castDba($dba, array $a, Stub $stub, bool $isNested) { $list = dba_list(); $a['file'] = $list[(int) $dba]; return $a; } /** * @return array */ public static function castProcess($process, array $a, Stub $stub, bool $isNested) { return proc_get_status($process); } public static function castStream($stream, array $a, Stub $stub, bool $isNested): array { $a = stream_get_meta_data($stream) + static::castStreamContext($stream, $a, $stub, $isNested); if ($a['uri'] ?? false) { $a['uri'] = new LinkStub($a['uri']); } return $a; } /** * @return array */ public static function castStreamContext($stream, array $a, Stub $stub, bool $isNested) { return @stream_context_get_params($stream) ?: $a; } /** * @return array */ public static function castGd($gd, array $a, Stub $stub, bool $isNested) { $a['size'] = imagesx($gd).'x'.imagesy($gd); $a['trueColor'] = imageistruecolor($gd); return $a; } /** * @return array */ public static function castOpensslX509($h, array $a, Stub $stub, bool $isNested) { $stub->cut = -1; $info = openssl_x509_parse($h, false); $pin = openssl_pkey_get_public($h); $pin = openssl_pkey_get_details($pin)['key']; $pin = \array_slice(explode("\n", $pin), 1, -2); $pin = base64_decode(implode('', $pin)); $pin = base64_encode(hash('sha256', $pin, true)); $a += [ 'subject' => new EnumStub(array_intersect_key($info['subject'], ['organizationName' => true, 'commonName' => true])), 'issuer' => new EnumStub(array_intersect_key($info['issuer'], ['organizationName' => true, 'commonName' => true])), 'expiry' => new ConstStub(date(\DateTimeInterface::ISO8601, $info['validTo_time_t']), $info['validTo_time_t']), 'fingerprint' => new EnumStub([ 'md5' => new ConstStub(wordwrap(strtoupper(openssl_x509_fingerprint($h, 'md5')), 2, ':', true)), 'sha1' => new ConstStub(wordwrap(strtoupper(openssl_x509_fingerprint($h, 'sha1')), 2, ':', true)), 'sha256' => new ConstStub(wordwrap(strtoupper(openssl_x509_fingerprint($h, 'sha256')), 2, ':', true)), 'pin-sha256' => new ConstStub($pin), ]), ]; return $a; } }