From d02390e62e751b940681af5ab50e94a85a4a520f Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Thu, 22 May 2025 17:08:12 +0200 Subject: [PATCH] add desock option --- docs/fuzzing_in_depth.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/fuzzing_in_depth.md b/docs/fuzzing_in_depth.md index 59a6d4bc..60c2aade 100644 --- a/docs/fuzzing_in_depth.md +++ b/docs/fuzzing_in_depth.md @@ -869,10 +869,11 @@ Here are some of the most important caveats for AFL++: - There is no direct support for fuzzing network services, background daemons, or interactive apps that require UI interaction to work. You may need to make - simple code changes to make them behave in a more traditional way. Preeny or - libdesock may offer a relatively simple option, too - see: + simple code changes to make them behave in a more traditional way. Preeny, + libdesock or desockmulti may offer a relatively simple option, too - see: [https://github.com/zardus/preeny](https://github.com/zardus/preeny) or [https://github.com/fkie-cad/libdesock](https://github.com/fkie-cad/libdesock) + [https://github.com/zyingp/desockmulti](https://github.com/zyingp/desockmulti) Some useful tips for modifying network-based services can be also found at: [https://www.fastly.com/blog/how-to-fuzz-server-american-fuzzy-lop](https://www.fastly.com/blog/how-to-fuzz-server-american-fuzzy-lop)