ModuleNotFoundError: No module named 'adamsa'
This error appears when trying to use radamsa
Probably an easy fix but still wanted to report it.
Traceback (most recent call last):
File "./manul.py", line 557, in init_mutators
self.user_mutators[module_name] = importlib.import_module(module_name)
File "/usr/lib/python3.7/importlib/init.py", line 127, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "
issue is in
def init_mutators(self): INFO(0, bcolors.BOLD + bcolors.HEADER, self.log_file, "Initializing mutators")
for module_name in self.mutator_weights:
if "afl" == module_name or "radamsa" == module_name:
continue
try:
self.user_mutators[module_name] = importlib.import_module(module_name)
except ImportError as exc:
ERROR("Unable to load user provided mutator %s. %s" % (module_name, exc.message))
self.user_mutators[module_name].init()
I found the solution. I had a typo in my manul.config file instead of radamsa:2 I had adamsa:2
Suggest : Put a note to the user to check the config when this error occurs