1/* 2 * find.h - Minimal offsets finder 3 * Taken and modified from cl0ver 4 * 5 * Copyright (c) 2016-2017 Siguza 6 */ 7 8#ifndef FIND_H 9#define FIND_H 10 11#include <mach/mach.h> 12 13#include "nvpatch.h" 14 15vm_address_t find_kernel_task(segment_t *text); 16 17vm_address_t find_ipc_space_kernel(segment_t *text); 18 19#endif 20 21