0

I want to practice fuzzing on the GNU coreutils with AFL. My plan is to compile coreutils binaries with the afl-gcc to be able to run AFL on them.

I have been able to successfully compile the coreutils with AFL's compiler by running ./configure CC="afl-gcc" CXX="afl-g++" --disable-shared; make

However, I don't understand where the binaries from running make are located after the compilation.

Chobom
  • 1
  • 3

1 Answers1

0

I found out that the binaries can be located in the src folder after compilation.

Chobom
  • 1
  • 3