Frida 17.9.8 Released ∞
release
Here’s a quick release with a GumJS bug-fix, a small API improvement, and a compiler type bump. Big thanks to vfsfitvnm and Francesco Tamagni for the GumJS improvements:
- gumjs: Fix
NativeCallbackreturning structs. The libffi closure result path forFFI_TYPE_STRUCTwas unimplemented and would hitg_assert_not_reached(). We now walk struct return values, including nested structs, and copy each leaf field’s natural bytes into the return buffer. The QuickJS and V8 callback invokers also size their temporary return buffer fromrtype->size, so structs fit as expected. Thanks to @vfsfitvnm for the fix. - gumjs: Extend
Memory.alloc()with an optionalprotectionfield on the options object, defaulting to"rw"to preserve existing behavior. This makes it possible to allocate page-aligned executable memory in environments where memory cannot be flipped from rw to rx, such as non-jailbroken iOS 26+. Thanks to @mrmacete. - compiler: Bump
@types/frida-gumto 19.1.0.
oleavr