s1341
s1341
Perhaps by specifying broker names/ports in an environment variable? - [ ] Core support in LlmpBroker - [ ] If running without the flag/environment variable, set it to the default...
Instead of crashing the target after reporting an ASAN error, we should (optionally) restore the process state to that before the erroring test case, and then simply continue fuzzing. This...
At the moment, we only save the raw `AsanErrors` in the metadata written to disk. In the `report_error` method, we do a lot of analysis of the error. The results...
frida-asan should crash the target at the actual error instruction location instead of panicking from the error reporting function. This can probably be most easily achieved by: 1. `mprotect`ing the...
When running with frida stalker, we should detect any new modules loaded by the target, and possibly add them to the instrumented modules list so that they will be stalked...
When objective-achieving results are saved, they should include all the metadata, mutator and observer data that is available related to this test-case. Perhaps this can be achieved by storing a...
Once the launcher is a little more mature, another thing that would be awesome to add to it is a 'reproducer' mode, which takes a given objective-achieving corpus member (or...
It doesn't seem like there is currently support for exposing services from an application. I'd like to add this feature... How do I wire up the service from the 'java'...
This means that you cannot pass either a `JObject::null()` or a class id to `call_static_method_unchecked`, you need to pass an **instance** of the target class. I believe that the call...