Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-04-02 | Add support for standalone leak-sanitizer, introducting the environment | Joshua Rogers | |
variable AFL_USE_LSAN. AFL_USE_LSAN introduces the macro __AFL_CHECK_LEAK() which will check for a memory leak when the macro is run. This is especially helpful when using __AFL_LOOP(). If __AFL_LEAK_CHECK() is not used when AFL_USE_LSAN=1 is set, the leak checker will run when the program exits. | |||
2021-03-19 | Merge pull request #831 from AFLplusplus/dev | van Hauser | |
Push to stable | |||
2021-03-19 | fix for new llvm 13 change | vanhauser-thc | |
2021-03-19 | refactor finding binaries | vanhauser-thc | |
2021-03-19 | remove unneeded code | vanhauser-thc | |
2021-03-19 | add header to PCGUARD | vanhauser-thc | |
2021-03-19 | update test-dlopen tuples number | Andrea Fioraldi | |
2021-03-19 | update dynamic list with cmplog | Andrea Fioraldi | |
2021-03-19 | fix dynamic list usage error in afl-cc | Andrea Fioraldi | |
2021-03-18 | check test-dlopen return code | Andrea Fioraldi | |
2021-03-18 | test-dlopen llvm test | Andrea Fioraldi | |
2021-03-18 | The official casing is AFLplusplus | Dominik Maier | |
2021-03-18 | typo | hexcoder | |
2021-03-18 | better installation example | vanhauser-thc | |
2021-03-18 | afl-fuzz cleanup | vanhauser-thc | |
2021-03-17 | better map variability | vanhauser-thc | |
2021-03-17 | fix dynamic list | Andrea Fioraldi | |
2021-03-17 | shared linking fix | vanhauser-thc | |
2021-03-17 | fix m32/m64 | vanhauser-thc | |
2021-03-17 | shmem map size in config.h | vanhauser-thc | |
2021-03-17 | fix is now closer to original statement | hexcoder | |
2021-03-17 | deepclean no longer removes submodules | Dominik Maier | |
2021-03-17 | bring back unicornafl | Dominik Maier | |
2021-03-17 | when you think you work on a debug branch but it is dev. git sucks so much ... | vanhauser-thc | |
2021-03-17 | debug | vanhauser-thc | |
2021-03-17 | fix | vanhauser-thc | |
2021-03-17 | lto test | vanhauser-thc | |
2021-03-17 | fix attempt | vanhauser-thc | |
2021-03-16 | debug | vanhauser-thc | |
2021-03-16 | fix two bugs in error message | hexcoder | |
$1 and $2 have been modified here by two previous shift commands. | |||
2021-03-16 | no runtime for shared linking | vanhauser-thc | |
2021-03-16 | Merge branch 'dev' of github.com:AFLplusplus/AFLplusplus into dev | Andrea Fioraldi | |
2021-03-16 | changelog | Andrea Fioraldi | |
2021-03-16 | blacklist sanitize and debug in c++ | vanhauser-thc | |
2021-03-16 | qemuafl | Andrea Fioraldi | |
2021-03-16 | rtn fix | vanhauser-thc | |
2021-03-16 | update qemuafl | Andrea Fioraldi | |
2021-03-16 | fix cmplog | vanhauser-thc | |
2021-03-16 | fix cmplog rtn | vanhauser-thc | |
2021-03-16 | Merge pull request #816 from realmadsci/add-more-qasan-checks | Andrea Fioraldi | |
Add more qasan checks | |||
2021-03-16 | Merge pull request #819 from realmadsci/qemu-consistent-preload | Andrea Fioraldi | |
Remove AFL_PRELOAD and AFL_USE_QASAN handlers | |||
2021-03-16 | Merge pull request #818 from realmadsci/add-qemu-custom-bin | Andrea Fioraldi | |
Add AFL_QEMU_CUSTOM_BIN environment flag | |||
2021-03-15 | v3.12a init | vanhauser-thc | |
2021-03-15 | Merge pull request #820 from AFLplusplus/dev 3.11c | van Hauser | |
push to stable | |||
2021-03-15 | v3.11c release | vanhauser-thc | |
2021-03-15 | fix test | vanhauser-thc | |
2021-03-15 | Remove AFL_PRELOAD and AFL_USE_QASAN handlers | realmadsci | |
These are now processed in afl-qemu-trace so that the "copy+paste" code that is in all of the other AFL tools can be removed. This also allows the AFL_USE_QASAN flag to work the same when used with tools like afl-fuzz as it does with afl-qemu-trace. This is important in situations where loading the QASAN library changes the address of your desired entrypoint, or for crash validation using the same environment that afl-fuzz was using. With this change, the same set of environment variables can be used in exactly the same way between afl-fuzz, afl-showmap, and afl-qemu-trace, and you will get exactly the same guest environment. | |||
2021-03-15 | Add AFL_QEMU_CUSTOM_BIN environment flag | realmadsci | |
In QEMU mode (-Q), setting AFL_QEMU_CUSTOM_BIN cause afl-fuzz to skip prepending afl-qemu-trace to your command line. Use this if you wish to use a custom afl-qemu-trace or if you need to modify the afl-qemu-trace arguments. | |||
2021-03-15 | fixes | aflpp | |
2021-03-15 | libqasan/malloc: Additional pointer checks | realmadsci | |
Add checks to free() and malloc_usable_size() to verify (sort of) that the pointers are actually pointing at valid allocated memory before dereferencing them and using the chunk_begin struct info. This will catch use-after-free and wildly bad pointers a little bit earlier. |