From 95a63bc352aedf4ef73becbce8c9be53e765b17c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= Date: Thu, 6 Apr 2023 16:37:52 +0200 Subject: [PATCH] test/fuzz: Use HTTPS URLs and mention AFL++ --- test/fuzz/README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/fuzz/README b/test/fuzz/README index 71c4e82b..a3b2eee5 100644 --- a/test/fuzz/README +++ b/test/fuzz/README @@ -3,7 +3,8 @@ Fuzzing the lwIP stack (afl-fuzz requires linux/unix or similar) This directory contains small apps that read Ethernet frames from stdin and process them. They are used together with the 'american fuzzy lop' tool (found -at http://lcamtuf.coredump.cx/afl/) and the sample inputs to test how +at https://lcamtuf.coredump.cx/afl/) or its successor AFL++ +(https://github.com/AFLplusplus/AFLplusplus) and the sample inputs to test how unexpected inputs are handled. The afl tool will read the known inputs, and try to modify them to exercise as many code paths as possible, by instrumenting the code and keeping track of which code is executed.