diff --git a/TODO b/TODO index 9771f471..fbffcd85 100644 --- a/TODO +++ b/TODO @@ -1,2 +1,3 @@ [x] Apache 2.0 bin [x] Stacking rbx +[x] \ No newline at end of file diff --git a/src/bypass/afl-showmap.c b/src/bypass/afl-showmap.c index b6e3a649..5c1971c6 100644 --- a/src/bypass/afl-showmap.c +++ b/src/bypass/afl-showmap.c @@ -27,6 +27,7 @@ #define VERSION "2.36b" #define AFL_MAIN +#define AFL_FUZZ #include #include @@ -350,6 +351,7 @@ size_t ArgvQuote(char *in, char *out) { //check if quoting is necessary if(strchr(in, ' ')) needs_quoting = 1; if(strchr(in, '\"')) needs_quoting = 1; + if(strchr(in, '\p')) needs_quoting = 1; if(strchr(in, '\t')) needs_quoting = 1; if(strchr(in, '\n')) needs_quoting = 1; if(strchr(in, '\v')) needs_quoting = 1;