From 2806d6be2f1d26eed7b42ae580f5bf7a29713a01 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Wed, 5 Jun 2024 09:20:30 +0200 Subject: optimize syncing --- include/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/config.h') diff --git a/include/config.h b/include/config.h index 3727dab1..ebe40022 100644 --- a/include/config.h +++ b/include/config.h @@ -324,9 +324,9 @@ #define SYNC_INTERVAL 8 /* Sync time (minimum time between syncing in ms, time is halfed for -M main - nodes) - default is 30 minutes: */ + nodes) - default is 20 minutes: */ -#define SYNC_TIME (30 * 60 * 1000) +#define SYNC_TIME (20 * 60 * 1000) /* Output directory reuse grace period (minutes): */ -- cgit 1.4.1 From ec0b83f127702fe23da72f4d424bc13a5bacfae9 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Sun, 9 Jun 2024 18:39:56 +0200 Subject: 4.21c --- README.md | 4 ++-- TODO.md | 2 +- docs/Changelog.md | 4 ++-- include/config.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'include/config.h') diff --git a/README.md b/README.md index 34d73890..1b255a2a 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ AFL++ logo -Release version: [4.20c](https://github.com/AFLplusplus/AFLplusplus/releases) +Release version: [4.21c](https://github.com/AFLplusplus/AFLplusplus/releases) -GitHub version: 4.21a +GitHub version: 4.21c Repository: [https://github.com/AFLplusplus/AFLplusplus](https://github.com/AFLplusplus/AFLplusplus) diff --git a/TODO.md b/TODO.md index aba3cf81..b36269b4 100644 --- a/TODO.md +++ b/TODO.md @@ -3,6 +3,7 @@ ## Must - fast restart of afl-fuzz if cmdline + target hash is the same + - check for null ptr for xml/curl/g_ string transform functions - hardened_usercopy=0 page_alloc.shuffle=0 - add value_profile but only enable after 15 minutes without finds - cmplog max items env? @@ -12,7 +13,6 @@ - afl-showmap -f support - afl-fuzz multicore wrapper script - when trimming then perform crash detection - - cyclomatic complexity: 2 + calls + edges - blocks ## Should diff --git a/docs/Changelog.md b/docs/Changelog.md index 0f4b2d8a..50494acc 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -3,7 +3,7 @@ This is the list of all noteworthy changes made in every public release of the tool. See README.md for the general instruction manual. -### Version ++4.21a (dev) +### Version ++4.21c (release) * afl-fuzz - fixed a regression in afl-fuzz that resulted in a 5-10% performace loss do a switch from gettimeofday() to clock_gettime() which should be rather @@ -24,6 +24,7 @@ long calibration times and syncing could result in now fuzzing being made when the time was already run out until then, thanks to @eqv! - fix -n uninstrumented mode when ending fuzzing + - enhanced the ASAN configuration - make afl-fuzz use less memory with cmplog and fix a memleak * afl-cc: - re-enable i386 support that was accidently disabled @@ -40,7 +41,6 @@ - minor fix to collect coverage -C (thanks to @bet4it) * Fixed a shmem mmap bug (that rarely came up on MacOS) * libtokencap: script generate_libtoken_dict.sh added by @a-shvedov - * enhanced the ASAN configuration ### Version ++4.20c (release) diff --git a/include/config.h b/include/config.h index ebe40022..c4acf8db 100644 --- a/include/config.h +++ b/include/config.h @@ -26,7 +26,7 @@ /* Version string: */ // c = release, a = volatile github dev, e = experimental branch -#define VERSION "++4.21a" +#define VERSION "++4.21c" /****************************************************** * * -- cgit 1.4.1