Файловый менеджер - Редактировать - /var/www/html/Attack.zip
Ðазад
PK ! 'j�= = AttackException.phpnu �[��� <?php namespace Tuf\Exception\Attack; use Tuf\Exception\TufException; /** * Defines an exception base class for potential attacks. * * Use this class for all failures related to verifying trust in the remote * repository metadata or a remote target. */ abstract class AttackException extends TufException { } PK ! {}̨� � RollbackAttackException.phpnu �[��� <?php namespace Tuf\Exception\Attack; /** * Indicates a potential rollback attack. */ class RollbackAttackException extends AttackException { } PK ! �a<� � InvalidHashException.phpnu �[��� <?php namespace Tuf\Exception\Attack; use Psr\Http\Message\StreamInterface; use Tuf\Exception\TufException; /** * Indicates an invalid hash was computed for a downloaded target. * * This exception provides access to the underlying stream which caused the * error. The stream's contents have failed TUF validation, so any code which * interacts with the stream should do so with great caution and treat its * contents as unsafe. */ class InvalidHashException extends TufException { /** * InvalidHashException constructor. * * @param \Psr\Http\Message\StreamInterface $stream * An untrusted stream object pointing to the downloaded target. The * contents of this stream have failed TUF validation, so any code * interacting with it should treat it as unsafe and proceed with great * caution. * @param string $message * (optional) The exception message. * @param int $code * (optional) The exception code. * @param \Throwable|null $previous * The previous exception, if any. */ public function __construct(private StreamInterface $stream, $message = "", $code = 0, ?\Throwable $previous = null) { parent::__construct($message, $code, $previous); } /** * Returns the untrusted stream object pointing to the downloaded target. * * WARNING: The contents of the stream failed TUF validation. Any code * interacting it should treat it as unsafe and proceed with great caution. * * @return \Psr\Http\Message\StreamInterface * The stream object. */ public function getStream(): StreamInterface { return $this->stream; } } PK ! �W:� � SignatureThresholdException.phpnu �[��� <?php namespace Tuf\Exception\Attack; /** * Indicates a resource does not reach the signature threshold. */ class SignatureThresholdException extends AttackException { } PK ! ���r� � FreezeAttackException.phpnu �[��� <?php namespace Tuf\Exception\Attack; /** * Indicates a potential freeze attack. */ class FreezeAttackException extends AttackException { } PK ! �byd� � "