1/* 2 * exploit64.h - Get kernel_task, root and escape the sandbox 3 * Taken and modified from Phœnix Jailbreak 4 * 5 * Copyright (c) 2017 Siguza & tihmstar 6 */ 7 8#ifndef EXPLOIT64_h 9#define EXPLOIT64_h 10 11#include <mach/mach.h> 12 13task_t get_kernel_task(vm_address_t *kbase); 14 15#endif 16 17