Apply american fuzzy lop as a part of Travis CI?
问题 I would like to run american fuzzy lop as a part of Travis CI run. How can I do that? 回答1: Here are my attempts - I managed to run AFL this way: https://github.com/d33tah/travis-test-c-app .travis.yml language: c install: wget "http://lcamtuf.coredump.cx/afl/releases/afl-1.88b.tgz" -O- | tar zxf - ; pushd . ; cd afl-*; make PREFIX=/tmp/afl install; echo core | sudo tee /proc/sys/kernel/core_pattern; popd Makefile CC=/tmp/afl/bin/afl-gcc all: app test: app ./perform_fuzzing perform_fuzzing #!