Skip to content

Tags: frida/frida-gum

Tags

17.16.4

Toggle 17.16.4's commit message
submodules: Bump releng

17.16.3

Toggle 17.16.3's commit message
submodules: Bump releng

17.16.2

Toggle 17.16.2's commit message
submodules: Bump releng

17.16.1

Toggle 17.16.1's commit message
submodules: Bump releng

17.16.0

Toggle 17.16.0's commit message
gumjs: Commit NO_ACCESS pages in Memory.alloc

Memory.alloc(size, { protection: '---' }) went through gum_memory_
allocate(), which only reserves NO_ACCESS pages on Windows, so a
later Memory.protect() to a usable protection failed. Recommit them,
as gum_alloc_n_pages() used to.

17.15.5

Toggle 17.15.5's commit message
darwin: Re-enable CodeSegment on newer kernels

The vm_remap OVERWRITE trick that ef6f67b disabled for kernels
>= 8020.142.0 (iOS >= 15.6.1) works again on iOS >= 17.6, so let
gum_code_segment_is_supported() return TRUE for xnu >= 10063.142.1.

17.15.4

Toggle 17.15.4's commit message
module-registry: Fix overlong line

17.15.3

Toggle 17.15.3's commit message
darwin: Populate registry before interceptor

The first gum_interceptor_obtain() activates the unwind
broker, whose backend resolves libdyld through the module
registry. Obtaining it before the snapshot re-entered an
empty registry, crashing on a NULL module lookup.

Snapshot the modules first, then start change tracking.

17.15.2

Toggle 17.15.2's commit message
linux: Find musl RTLD call sites on disk

Scanning live memory missed call sites a second GumModuleRegistry
had already redirected, so it fell back to clobbering the tiny
stub. Read the linker's on-disk image instead: the original
instructions always survive there, and hooking the same loaded
addresses lets the interceptors chain.

17.15.1

Toggle 17.15.1's commit message
linux: Find musl RTLD call sites on disk

Scanning live memory missed call sites a second GumModuleRegistry
had already redirected, so it fell back to clobbering the tiny
stub. Read the linker's on-disk image instead: the original
instructions always survive there, and hooking the same loaded
addresses lets the interceptors chain.