Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-06-03 | Merge pull request #390 from devnexen/obsd_no_retpoline | hexcoder | |
OpenBSD build update and llvm mode fix | |||
2020-06-03 | fix shmem | van Hauser | |
2020-06-03 | switch order of shmem fuzz | van Hauser | |
2020-06-03 | switch shmem_len to the map | van Hauser | |
2020-06-03 | OpenBSD: add missing limits.h header for PATH_MAX | hexcoder- | |
2020-06-03 | improved unicornafl speed | Dominik Maier | |
2020-06-03 | no inline in qemu driver | Andrea Fioraldi | |
2020-06-03 | fix conflicts | Andrea Fioraldi | |
2020-06-03 | AFL_QEMU_DRIVER_NO_HOOK | Andrea Fioraldi | |
2020-06-03 | code format | van Hauser | |
2020-06-03 | aflpp libfuzzer driver for qemu mode | Andrea Fioraldi | |
2020-06-03 | shared mem input for qemu persistent hook | Andrea Fioraldi | |
2020-06-03 | added shmem support to unicornafl | Dominik Maier | |
2020-06-02 | got rid of questionable phrasing | Dominik Maier | |
2020-06-02 | Merge branch 'dev' of github.com:aflplusplus/aflplusplus into dev | Dominik Maier | |
2020-06-02 | minor fixes | Dominik Maier | |
2020-06-01 | hopeful finally change for libfuzzer driver | van Hauser | |
2020-06-01 | fix libfuzzer driver | van Hauser | |
2020-06-01 | small changes to libfuzzer driver | van Hauser | |
2020-06-01 | minimal changes to a test | van Hauser | |
2020-06-01 | minimal changes to a test | van Hauser | |
2020-06-01 | code format | van Hauser | |
2020-06-01 | fixed persistent mode shared mem fuzzing | van Hauser | |
2020-05-31 | starting shmap support for unicorn | Dominik Maier | |
2020-05-30 | comment | Dominik Maier | |
2020-05-30 | OpenBSD build update and llvm mode fix | David Carlier | |
Unlike upstream version, LLVM in OpenBSD enable by default anti ROP gadget leading to bigger binaries and lower performances. On OpenBSD, it needs to link to c++ abi for th unwind symbols. | |||
2020-05-30 | rename var time->time_ms | van Hauser | |
2020-05-30 | removed read_timed | Dominik Maier | |
2020-05-30 | reverted extendended read_timed | Dominik Maier | |
2020-05-30 | Revert "code format" | Dominik Maier | |
This reverts commit 8f19becb620a6fedd0f8b855b48cdeeab211c2ed. | |||
2020-05-30 | fix forkserver change | van Hauser | |
2020-05-30 | fix vor afl-clang | van Hauser | |
2020-05-30 | PowerPc support | Dominik Maier | |
2020-05-30 | code format | Dominik Maier | |
2020-05-30 | corrected read_timed for values > 4 | Dominik Maier | |
2020-05-30 | update readme | van Hauser | |
2020-05-30 | simplified read_timed | van Hauser | |
2020-05-29 | Merge pull request #383 from dgmelski/fix-read-timed | Dominik Maier | |
Fix read_timed when accumulating short reads | |||
2020-05-29 | whitelist wildcard for LTO | van Hauser | |
2020-05-29 | Merge pull request #385 from sirmc/dev | van Hauser | |
Support UNIX-style wildcards in AFL_LLVM_WHITELIST file | |||
2020-05-29 | Remove AFL_LLVM_WHITELIST_FNMATCH env variable | Sebastian Österlund | |
2020-05-29 | code format | van Hauser | |
2020-05-29 | add Perl dictionaries from RootUp | hexcoder- | |
2020-05-29 | Do clang-format | Sebastian Österlund | |
2020-05-29 | gcc_plugin: better error message when compiler and plugin versions do not match | hexcoder- | |
2020-05-29 | .gitignore: add *.pyc | hexcoder- | |
2020-05-29 | Fix typos in LLVM whitelist README | Sebastian Österlund | |
2020-05-29 | Add AFL_LLVM_WHITELIST_FNMATCH env var | Sebastian Österlund | |
Only enable UNIX pattern matching on the whitelist when AFL_LLVM_WHITELIST_FNMATCH is set. The reason being that we keep backwards compatibility with old whitelists. | |||
2020-05-29 | Support filename pattern matching in whitelist | Sebastian Österlund | |
Allow the whitelist specified by AFL_LLVM_WHITELIST contain entries with UNIX shell-style wildcard pattern matching. | |||
2020-05-28 | Fix read_timed when accumulating short reads | David Melski | |
The existing code appears to use 'len_read' in several places where 'total_read' was intended. The function may work if the first 1 or 2 iterations of the loop read the requested 'len' bytes. If the first two reads are "short" and a third read is done, the bytes will be placed over previously read bytes in buf and more than 'len' bytes may be read in total, though buf is never overrun. This commit changes read_timed to (1) correctly append short reads in buf (2) correctly terminate when the sum of the short reads equals the requested 'len' bytes (3) return an error when read() returns -1 or 0 The function also depends on select() decrementing the timeout structure, as it does on Linux. On other platforms, the exec_ms returned is likely incorrect. This patch does not attempt to address this issue. |