american-fuzzy-lop

AFL warning: Last new path : none yet (odd, check syntax!)

流过昼夜 提交于 2021-01-27 04:17:07
问题 I have this warning (Last new path : none yet (odd, check syntax!)) in red after I try to fuzzing a file. I have no idea why it happens and I googled with no answers. My command is like: afl-fuzz -i testcases/ -o findings/ tcpdump-4.6.2/tcpdump -nr @@ 回答1: It usually means that your command line doesn't actually read the file. Try running it without afl-fuzz, substituting @@ with a path to a file from the testcases directory. Hopefully tcpdump's message will tell you what is wrong. In the

Apply american fuzzy lop as a part of Travis CI?

非 Y 不嫁゛ 提交于 2019-12-10 16:48:01
问题 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 #!