From afb23f09cf921d54ef9d11d5fa2a219f824ee025 Mon Sep 17 00:00:00 2001 From: hexcoder Date: Thu, 13 Feb 2020 19:58:08 +0100 Subject: argv fuzzing afl-fuzz-inl.h: apply patch from issue#195 @dpmdpm2: Thanks --- examples/argv_fuzzing/argv-fuzz-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/argv_fuzzing/argv-fuzz-inl.h') diff --git a/examples/argv_fuzzing/argv-fuzz-inl.h b/examples/argv_fuzzing/argv-fuzz-inl.h index 4d880020..5644f7e4 100644 --- a/examples/argv_fuzzing/argv-fuzz-inl.h +++ b/examples/argv_fuzzing/argv-fuzz-inl.h @@ -53,7 +53,7 @@ } while (0) #define MAX_CMDLINE_LEN 100000 -#define MAX_CMDLINE_PAR 1000 +#define MAX_CMDLINE_PAR 50000 static char** afl_init_argv(int* argc) { @@ -65,7 +65,7 @@ static char** afl_init_argv(int* argc) { if (read(0, in_buf, MAX_CMDLINE_LEN - 2) < 0) {} - while (*ptr) { + while (*ptr && rc < MAX_CMDLINE_PAR) { ret[rc] = ptr; if (ret[rc][0] == 0x02 && !ret[rc][1]) ret[rc]++; -- cgit 1.4.1