Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2016-4655/find.h
21463 views
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
15
vm_address_t find_kernel_task(segment_t *text);
16
17
vm_address_t find_ipc_space_kernel(segment_t *text);
18
19
#endif
20
21