WorksButNotTested

Results 145 comments of WorksButNotTested

Dependency on `memcpy` or `memset` can often be caused by the compiler generating calls to them to initialize local variables rather than initializing them one field at a time.

I haven't tested on android yet personally. But you'll need the --interactive flag. Sorry just noticed I missed it from the docs.

Just a thought, but would this functionality be useful more widely than just the LibAFL project? Could it apply to other projects also? Is it worth considering whether additional rules...

The addition of the `-rdynamic` flag to the fuzzer is a bit ugly too. But without it rust seems to drop any exported functions from crates linked as dependencies. Perhaps...

> The changes in frida-rust have landed right? Yup. Just need to get some free time and I'll integrate them. Happy if someone else wants to do it, if people...

Running the command... ```bash LIBAFL_DEBUG_OUTPUT=1 ./target/release/frida_fuzzer -F LLVMFuzzerTestOneInput -H ./libpng-harness.so -l ./libpng-harness.so --backend quick-js --script /tmp/script.js ``` Loading the script... ```js LibAfl.testFunction("TEST FUNCTION"); const bytes = new Uint8Array([0x11, 0x22, 0x33,...

Sounds good to me if you're happy.

Thanks for the merge.

The issue says that FRIDA was fixed at `16.0.13` for all the tests? And I don't think there have been any changes to `frida_mode` in AFL++ for some time either....

Given that frida is on a fixed version. I suggest the next step is to bisect the AFL++ version to find the commit which introduced the performance regression. All of...