11 lines
193 B
PHP
Executable file
11 lines
193 B
PHP
Executable file
<?php
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
use Amp\Http\HPack;
|
|
|
|
$fuzzer->setTarget(function (string $input) {
|
|
(new HPack)->decode($input, 8192);
|
|
});
|
|
|
|
$fuzzer->setMaxLen(1024);
|