From 8eaa841b12d11022925480f647be8e0ad123e01e Mon Sep 17 00:00:00 2001 From: Connortsui20 <87130162+Connortsui20@users.noreply.github.com> Date: Mon, 11 Sep 2023 06:39:34 -0400 Subject: [PATCH] Update afl setup with cargo-afl https://github.com/rust-fuzz/afl.rs requires you to install afl with `cargo install cargo-afl` instead of just `cargo install afl`. This just changes the commands --- src/afl/setup.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/afl/setup.md b/src/afl/setup.md index 4f448ae..bd39021 100644 --- a/src/afl/setup.md +++ b/src/afl/setup.md @@ -12,11 +12,11 @@ afl.rs works on x86-64 Linux, x86-64 macOS, and ARM64 macOS. ```sh -cargo install afl +cargo install cargo-afl ``` ## Upgrading ```sh -cargo install --force afl +cargo install --force cargo-afl ```