mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 17:51:32 +00:00
@ -9,6 +9,7 @@
|
||||
before terminating.
|
||||
- added AFL_IGNORE_SEED_PROBLEMS to skip over seeds that time out instead
|
||||
of exiting with an error message
|
||||
- allow -S/-M naming up to 50 characters (from 24)
|
||||
- afl-whatsup:
|
||||
- detect instanced that are starting up and show them as such as not dead
|
||||
- now also shows coverage reached
|
||||
|
@ -536,6 +536,10 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
|
||||
afl->input_mode = 2;
|
||||
|
||||
} else if (!stricmp(optarg, "def") || !stricmp(optarg, "default")) {
|
||||
|
||||
afl->input_mode = 0;
|
||||
|
||||
} else {
|
||||
|
||||
FATAL("-a input mode needs to be \"text\" or \"binary\".");
|
||||
@ -1492,9 +1496,9 @@ int main(int argc, char **argv_orig, char **envp) {
|
||||
|
||||
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");
|
||||
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user