Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-03 | deterministic fuzzing and -z | vanhauser-thc | |
2024-02-03 | 2024 v4.10c release | vanhauser-thc | |
2024-02-01 | final touches for skipdet | vanhauser-thc | |
2024-02-01 | Enhancement on Deterministic stage (#1972) | Han Zheng | |
* fuzzer: init commit based on aflpp 60dc37a8cf09f8e9048e4b6a2204d6c90b27655a * fuzzers: adding the skip variables and initialize * log: profile the det/havoc finding * log: add profile log output * fuzzers: sperate log/skipdet module * fuzzers: add quick eff_map calc * fuzzers: add skip_eff_map in fuzz_one * fuzzers: mark whole input space in eff_map * fuzzers: add undet bit threshold to skip some seeds * fuzzers: fix one byte overflow * fuzzers: fix overflow * fix code format * add havoc only again * code format * remove log to INTROSPECTION, rename skipdet module * rename skipdet module * remove log to stats * clean redundant code * code format * remove redundant code format check * remove redundant doc * remove redundant objects * clean files * change -d to default skipdet * disable deterministic when using CUSTOM_MUTATOR * revert fix | |||
2023-12-15 | switch to explore powerschedule as default | vanhauser-thc | |
2023-08-23 | AFL_IGNORE_SEED_PROBLEMS | vanhauser-thc | |
2023-08-11 | add AFL_FINAL_SYNC | marc | |
2023-08-04 | Define AFL_CRASHING_SEEDS_AS_NEW_CRASH as env variable | Junwha | |
- and fix typo Signed-off-by: Junwha <qbit@unist.ac.kr> | |||
2023-06-06 | Merge pull request #1759 from AFLplusplus/dev | van Hauser | |
Dev | |||
2023-04-21 | fixed formatting with make code-format | Maik Betka | |
2023-04-21 | Merge remote-tracking branch 'origin/dev' into atnwalk | Maik Betka | |
# Conflicts: # include/afl-fuzz.h # src/afl-fuzz-run.c | |||
2023-04-17 | fixed code clones in atnwalk.c, introduced new environment variable ↵ | Maik Betka | |
AFL_POST_PROCESS_KEEP_ORIGINAL in AFL++ to integrate atnwalk without re-compiling afl-fuzz | |||
2023-04-05 | implement switch mode | vanhauser-thc | |
2023-04-04 | mode switch | vanhauser-thc | |
2023-04-02 | allow pizza mode to be disabled | vanhauser-thc | |
2023-03-06 | Fixed according to CR | Amit Elkabetz | |
2023-03-05 | Changed warning message to use const instead of magic | Amit Elkabetz | |
2023-03-05 | Fixed according to PR comment, moved cli flag to an env variable | Amit Elkabetz | |
2023-03-05 | Added flag -u to allow custom interval to update fuzzer_stats file | Amit Elkabetz | |
2023-02-15 | debug output | vanhauser-thc | |
2023-01-18 | ignore timeout env option | vanhauser-thc | |
2023-01-03 | welcome 2023 | vanhauser-thc | |
2022-10-24 | changelog update | vanhauser-thc | |
2022-10-21 | Add AFL_FORK_SERVER_KILL_SIGNAL environment variable. | Nils Bars | |
The AFL_FORK_SERVER_KILL_SIGNAL variable allows to configure the signal used to kill the fork server on termination. | |||
2022-10-20 | Fix child reaping on fuzzer termination | Nils Bars | |
This commit contains the following changes: - Call `waitpid()` on the child and the fork server when terminating the fuzzer; thus, we do not end up with zombies. - Rename `fsrv.kill_signal` to `fsrv.child_kill_signal`, since the documentation states that the signal is used to terminate the *child*. - Use SIGTERM instead of fsrv.(child)_kill_signal, thus the fork server can always reap the child. | |||
2022-09-10 | code format | vanhauser-thc | |
2022-08-25 | fix pizza mode | vanhauser-thc | |
2022-08-14 | add AFL_NO_STARTUP_CALIBRATION feature | vanhauser-thc | |
2022-07-21 | fix pizza mode | vanhauser-thc | |
2022-06-17 | formatting | Ruben ten Hove | |
2022-06-17 | feat: allow to skip readme creation on crash | Ruben ten Hove | |
2022-06-08 | honor AFL_MAP_SIZE well outside of afl++ | vanhauser-thc | |
2022-05-27 | Add AFL_SYNC_TIME variable for synchronization time tuning (#1425) | Daniil Kuts | |
* Add AFL_SYNC_TIME variable for synchronization time tuning * Documentation for AFL_SYNC_TIME variable | |||
2022-05-17 | fix mem leak | che30122 | |
2022-04-08 | add AFL_KEEP_TIMEOUTS | vanhauser-thc | |
2022-04-03 | fix pizza mode | vanhauser-thc | |
2022-04-02 | Fix dyslexia and clang format | Carlo Maragno | |
2022-04-01 | Add basic support for Italian users | Carlo Maragno | |
2022-02-08 | reintroduce AFL_PERSISTENT and AFL_DEFER_FORKSRV | vanhauser-thc | |
2022-02-05 | change -y to -g/-G and add env var alternatives | vanhauser-thc | |
2022-02-05 | add afl-fuzz -y fuzz length support | vanhauser-thc | |
2022-01-01 | welcome 2022 | vanhauser-thc | |
2021-11-06 | http->https | vanhauser-thc | |
2021-08-12 | AFL_IGNORE_PROBLEMS + library checks and documentation | vanhauser-thc | |
2021-06-10 | fix AFL_CAL_FAST | vanhauser-thc | |
2021-05-25 | add AFL_TRY_AFFINITY | vanhauser-thc | |
2021-05-25 | AFL_SKIP_CRASHES is obsolete since 3.0 | vanhauser-thc | |
2021-05-10 | code-format | vanhauser-thc | |
2021-05-07 | Exit on time (#904) | Roman M. Iudichev | |
* Variable AFL_EXIT_ON_TIME description has been added. Variables AFL_EXIT_ON_TIME and afl_exit_on_time has been added. afl->exit_on_time variable initialization has been added. The asignment of a value to the afl->afl_env.afl_exit_on_time variable from environment variables has been added. Code to exit on timeout if new path not found has been added. * Type of afl_exit_on_time variable has been changed. Variable exit_on_time has been added to the afl_state_t structure. * Command `export AFL_EXIT_WHEN_DONE=1` has been added. * Millisecond to second conversion has been added. Call get_cur_time() has been added. * Revert to using the saved current time value. * Useless check has been removed. | |||
2021-04-13 | add AFL_EXIT_ON_SEED_ISSUES | vanhauser-thc | |