From 725393bc5de44e57b0cd8b71e8d87e0c50d3c04f Mon Sep 17 00:00:00 2001 From: Brayden Partridge <62482760+Praxtical@users.noreply.github.com> Date: Wed, 15 Jul 2026 16:02:57 -0400 Subject: [PATCH] Fix Makefile compatibility Pixel 9 series The exploit implementation for Pixel 9 series devices relies on different root and preload files, but the makefile does not look for these in the target directories, causing a linker error when the compiled output is run through adb --- IonStack/CVE-2026-43499/exploit/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IonStack/CVE-2026-43499/exploit/Makefile b/IonStack/CVE-2026-43499/exploit/Makefile index 5bde838f..20436687 100644 --- a/IonStack/CVE-2026-43499/exploit/Makefile +++ b/IonStack/CVE-2026-43499/exploit/Makefile @@ -24,8 +24,8 @@ CORE_SRCS := \ $(call pick_src,slide.c) \ $(call pick_src,fops.c) \ $(call pick_src,pipe.c) \ - src/root.c -PRELOAD_SRCS := $(CORE_SRCS) src/preload.c src/su_blob.S src/wallpaper_blob.S + $(call pick_src,root.c) +PRELOAD_SRCS := $(CORE_SRCS) $(call pick_src,preload.c) src/su_blob.S src/wallpaper_blob.S .DEFAULT_GOAL := preload