__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php /* * This file is part of the PHPASN1 library. * * Copyright © Friedrich Große <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace FG\ASN1; class UnknownConstructedObject extends Construct { private $identifier; private $contentLength; /** * @param string $binaryData * @param int $offsetIndex * * @throws \FG\ASN1\Exception\ParserException */ public function __construct($binaryData, &$offsetIndex) { $this->identifier = self::parseBinaryIdentifier($binaryData, $offsetIndex); $this->contentLength = self::parseContentLength($binaryData, $offsetIndex); $children = []; $octetsToRead = $this->contentLength; while ($octetsToRead > 0) { $newChild = ASNObject::fromBinary($binaryData, $offsetIndex); $octetsToRead -= $newChild->getObjectLength(); $children[] = $newChild; } parent::__construct(...$children); } public function getType() { return ord($this->identifier); } public function getIdentifier() { return $this->identifier; } protected function calculateContentLength() { return $this->contentLength; } protected function getEncodedValue() { return ''; } }
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Composite | Folder | 0775 |
|
|
| Exception | Folder | 0775 |
|
|
| Universal | Folder | 0775 |
|
|
| ASNObject.php | File | 12.84 KB | 0664 |
|
| AbstractString.php | File | 3.32 KB | 0664 |
|
| AbstractTime.php | File | 2.29 KB | 0664 |
|
| Base128.php | File | 1.45 KB | 0664 |
|
| Construct.php | File | 4.62 KB | 0664 |
|
| ExplicitlyTaggedObject.php | File | 4.21 KB | 0664 |
|
| Identifier.php | File | 10.57 KB | 0664 |
|
| OID.php | File | 53.26 KB | 0664 |
|
| Parsable.php | File | 1017 B | 0664 |
|
| TemplateParser.php | File | 1.87 KB | 0664 |
|
| UnknownConstructedObject.php | File | 1.39 KB | 0664 |
|
| UnknownObject.php | File | 1.27 KB | 0664 |
|