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-4669/macho.h
Views: 11780
1
#ifndef MACHO_H
2
#define MACHO_H
3
4
#include <stdint.h>
5
#include "utils.h"
6
7
uint32_t kr32(addr_t from);
8
uint32_t kw32(addr_t to, uint32_t v);
9
void kread(uint64_t from, void *to, size_t size);
10
11
#endif
12
13