I am trying to make a simple script to start multiple fuzzers with AFL, I am prompting the users for the amount of fuzzers they want to start, storing the variable, and then want to issue the same command the number of times they specified.
I.E., "afl-fuzz -i /input -o /output ./binary fuzzer1 @@"
is this possible?
Something like this, maybe, if you want to run your process in parallel in the background?
Remove the
&
if you want to run them one after the other in the foreground.If you want to run your jobs in parallel with different files for input, a solution to consider might be xargs:
(See man page for
xargs
for details.)