2019-10-17 04:18:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
######################################################################
|
|
|
|
|
# DESCRIPTION: Fuzzer run script
|
|
|
|
|
#
|
2026-01-27 02:24:34 +01:00
|
|
|
# SPDX-FileCopyrightText: 2019 Eric Rippey
|
2020-03-21 16:24:24 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
2019-10-17 04:18:35 +02:00
|
|
|
######################################################################
|
|
|
|
|
|
|
|
|
|
# Actually do the fuzzing. Note that this will not terminate in any reasonable
|
|
|
|
|
# amount of time. However, it will give updates on its progress.
|
|
|
|
|
afl-fuzz -i in1 -o out1 -x dictionary ./wrapper --cc @@
|