add libfuzzer custom mutator, minor enhancements and fixes

This commit is contained in:
van Hauser
2020-09-10 15:26:46 +02:00
parent fdb0452245
commit 380051868a
62 changed files with 11668 additions and 20 deletions

View File

@ -1508,9 +1508,9 @@ int main(int argc, char **argv, char **envp) {
if (debug) {
SAYF(cMGN "[D]" cRST " cd \"%s\";", getthecwd());
SAYF(cMGN "[D]" cRST " cd '%s';", getthecwd());
for (i = 0; i < argc; i++)
SAYF(" \"%s\"", argv[i]);
SAYF(" '%s'", argv[i]);
SAYF("\n");
}
@ -1536,9 +1536,9 @@ int main(int argc, char **argv, char **envp) {
if (debug) {
SAYF(cMGN "[D]" cRST " cd \"%s\";", getthecwd());
SAYF(cMGN "[D]" cRST " cd '%s';", getthecwd());
for (i = 0; i < cc_par_cnt; i++)
SAYF(" \"%s\"", cc_params[i]);
SAYF(" '%s'", cc_params[i]);
SAYF("\n");
}