CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2016-4655/exploit64.h
Views: 11778
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
13
task_t get_kernel_task(vm_address_t *kbase);
14
15
#endif
16
17