Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2016-4669/macho.h
21463 views
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