WorksButNotTested

Results 40 issues of WorksButNotTested

Seems that QEMU now no longer baulks when attempting to allocate large `MAP_NORESERVE` ranges in the guest. This means that it is now possible to keep the shadow ranges in...

Based on [this](https://github.com/AFLplusplus/LibAFL/tree/main/fuzzers/baby_fuzzer_minimizing). Seems to generate multiple outputs for each input though?

# Summary When updating the version of the `frida-rust` dependency, it was observed that moving from `frida-gum-sys` `0.5` to `0.6` things stopped working on ARM64 MacOS. This issue serves to...

Please note that this PR also contains the following: * https://github.com/frida/frida-gum/pull/762 This is because the RunOnThread functionality is necessary for it to function. This PR adds support for reading user_time...

# test.cpp ```c #include "frida-gumjs.h" __attribute__((constructor)) static void init(void) { puts("START"); gum_init_embedded (); GumScriptScheduler *scheduler = gum_script_backend_get_scheduler(); puts("END"); } ``` # hi.cpp ```c #include int main() { puts("HI"); } ```...

# test.cpp ```c #include "frida-gumjs.h" gboolean found (const GumRangeDetails * details, gpointer user_data) { static int i=0; printf("i: %4d 0x%016llx-0x%016llx %s\n", ++i, details->range->base_address, details->range->base_address + details->range->size, details->file == NULL ?...

AFLTriage is great, super easy to use. I've run into a small issue though. I would like to `LD_PRELOAD` a library into my target when it is run. However, I...

The transformer provided to `Stalker.follow_me` should remain in scope until the corresponding `unfollow_me` is called. It does not appear that this life-time constraint is described by the wrapper class here......