increase sync length

This commit is contained in:
vanhauser-thc
2023-09-12 16:05:56 +02:00
parent 4f4ce24690
commit 3b835b7c8b
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@
before terminating. before terminating.
- added AFL_IGNORE_SEED_PROBLEMS to skip over seeds that time out instead - added AFL_IGNORE_SEED_PROBLEMS to skip over seeds that time out instead
of exiting with an error message of exiting with an error message
- allow -S/-M naming up to 50 characters (from 24)
- afl-whatsup: - afl-whatsup:
- detect instanced that are starting up and show them as such as not dead - detect instanced that are starting up and show them as such as not dead
- now also shows coverage reached - now also shows coverage reached

View File

@ -1492,9 +1492,9 @@ int main(int argc, char **argv_orig, char **envp) {
if (afl->sync_id) { if (afl->sync_id) {
if (strlen(afl->sync_id) > 24) { if (strlen(afl->sync_id) > 50) {
FATAL("sync_id max length is 24 characters"); FATAL("sync_id max length is 50 characters");
} }