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-2017-13861/find_port.h
Views: 11777
1
#ifndef find_port_h
2
#define find_port_h
3
4
#include <mach/mach.h>
5
6
uint64_t find_port_address(mach_port_t port, int disposition);
7
uint64_t find_port_via_kmem_read(mach_port_name_t port);
8
9
#endif /* find_port_h */
10
11