Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion recipes/v1_0_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@
BUILD = 12

# Cave payload region (zero-fill tail of UnityFramework __TEXT).
CAVE_REGION = (0x826F5E8, 0x8274000)
#
# Previously started at 0x826F5E8, but 34 caves x 84 bytes (2,856 B) grew
# past a residual __oslogstring block that lives at 0x826FFF8..0x8270020
# (`%{public}s`, `[%{public}@] `, `%{public}@\0` fragments). The
# verify-before-write guard in tools.patch_macho rightly flagged this as
# not-zero-fill. Move the region start past the block; KiouEngineBridge
# PR #40 already validated 0x8270040 as the tail-of-__oslogstring border.
CAVE_REGION = (0x8270040, 0x8274000)

# Observer dispatcher slot — chinlan caves load this single 8-byte pointer.
HOOK_SLOT_RVA = 0x8F90C80
Expand Down
Loading