Frida 17.2.6 Released ∞
release
We’re excited to announce Frida 17.2.6, featuring two important fixes:
-
buffer: Fix
max_length
inread_fixed_string()
.The
max_length
is now properly constrained within both the requested size and the buffer’s size.Thanks @mrmacete!
-
agent: Disable Exceptor for the emulated realm.
Exceptor needs to hook
signal()
andsigaction()
, but they are in libc. This leads togum_mprotect()
aborting because it cannot change libc’s read-only mapping. This fix prevents the crash observed when usingfrida-server
orfrida-inject
on Android 14 and 15 AVDs.Thanks @ptrstr!