From 573cbadaa1ad081621a4f2c17ad75e30830b6f23 Mon Sep 17 00:00:00 2001 From: efibalogh Date: Fri, 24 Jul 2026 01:05:24 +0300 Subject: [PATCH] fix: increase dlopen timeout to 15 seconds --- helper/inject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/inject.c b/helper/inject.c index 61066cb..2381f00 100644 --- a/helper/inject.c +++ b/helper/inject.c @@ -832,7 +832,7 @@ int inject_missing_frameworks(task_t task, mach_port_t exc, uint64_t handle = 0; int rc = target_call(task, hijack, exc, target_dlopen, scratch_path, 0x2 /* RTLD_NOW */, - 0, 0, 0, 0, 0, &handle, 3000); + 0, 0, 0, 0, 0, &handle, 15000); mach_vm_deallocate(task, scratch_path, spages); if (rc != 0 || handle == 0) {