diff options
author | vanhauser-thc <vh@thc.org> | 2022-11-11 10:46:45 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-11-11 10:46:45 +0100 |
commit | c5f8869778b237f89cc4c12c1961a9ef559179b8 (patch) | |
tree | 9582e14e72faf720b3e2c599cecc09530a56a227 /src/afl-fuzz-mutators.c | |
parent | b2f12c37120e6529d1bab83976db009263dedc97 (diff) | |
download | afl++-c5f8869778b237f89cc4c12c1961a9ef559179b8.tar.gz |
afl_custom_fuzz_send added
Diffstat (limited to 'src/afl-fuzz-mutators.c')
-rw-r--r-- | src/afl-fuzz-mutators.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/afl-fuzz-mutators.c b/src/afl-fuzz-mutators.c index b9daebfa..f3d0bc96 100644 --- a/src/afl-fuzz-mutators.c +++ b/src/afl-fuzz-mutators.c @@ -314,6 +314,14 @@ struct custom_mutator *load_custom_mutator(afl_state_t *afl, const char *fn) { } + /* "afl_custom_fuzz_send", optional */ + mutator->afl_custom_fuzz_send = dlsym(dh, "afl_custom_fuzz_send"); + if (!mutator->afl_custom_fuzz_send) { + + ACTF("optional symbol 'afl_custom_fuzz_send' not found."); + + } + /* "afl_custom_queue_new_entry", optional */ mutator->afl_custom_queue_new_entry = dlsym(dh, "afl_custom_queue_new_entry"); if (!mutator->afl_custom_queue_new_entry) { |