mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-13 02:28:09 +00:00
block the usage of mopt with optionals mutators (redqueen/radamsa/etc...)
This commit is contained in:
@ -624,6 +624,12 @@ int main(int argc, char** argv, char** envp) {
|
||||
|
||||
if (use_radamsa) {
|
||||
|
||||
if (limit_time_sig)
|
||||
FATAL(
|
||||
"MOpt and Radamsa are mutually exclusive. We accept pull requests "
|
||||
"that integrates MOpt with the optional mutators "
|
||||
"(custom/radamsa/redquenn/...).");
|
||||
|
||||
OKF("Using Radamsa add-on");
|
||||
|
||||
u8* libradamsa_path = get_libradamsa_path(argv[0]);
|
||||
@ -892,6 +898,12 @@ int main(int argc, char** argv, char** envp) {
|
||||
|
||||
if (cmplog_binary) {
|
||||
|
||||
if (limit_time_sig)
|
||||
FATAL(
|
||||
"MOpt and CmpLog are mutually exclusive. We accept pull requests "
|
||||
"that integrates MOpt with the optional mutators "
|
||||
"(custom/radamsa/redquenn/...).");
|
||||
|
||||
if (unicorn_mode)
|
||||
FATAL("CmpLog and Unicorn mode are not compatible at the moment, sorry");
|
||||
if (!qemu_mode) check_binary(cmplog_binary);
|
||||
|
Reference in New Issue
Block a user