forked from NytroRST/ShellcodeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunctionOffsetAddress.h
More file actions
40 lines (26 loc) · 726 Bytes
/
FunctionOffsetAddress.h
File metadata and controls
40 lines (26 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef FUNCTIONOFFSETADDRESS_H
#define FUNCTIONOFFSETADDRESS_H
#include <string>
#include <vector>
#include <iostream>
using namespace std;
// Class to work with function addresses on stack
class FunctionOffsetAddress
{
public:
// Struct to save function address offset on the stack
struct FunctionOffset
{
string Name;
size_t Offset;
};
static vector<FunctionOffset> FunctionOffsets;
static size_t CurrentFunctionOffset;
// Check if a function offset already exists
static bool FunctionOffsetExists(string p_sFunctionName);
// Add a function offset
static void AddFunctionOffset(string p_sFunctionName);
// Get function offset
static size_t GetFunctionOffset(string p_sFunctionName);
};
#endif