forked from NytroRST/ShellcodeCompiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebugUtils.h
More file actions
26 lines (16 loc) · 396 Bytes
/
DebugUtils.h
File metadata and controls
26 lines (16 loc) · 396 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
#ifndef DEBUGUTILS_H
#define DEBUGUTILS_H
#include <iostream>
#include "DeclaredFunctions.h"
#include "FunctionCalls.h"
using namespace std;
// Class used for debugging purposes: Dump data, test shellcode
class DebugUtils
{
public:
// Dump all data - debug purposes
static void DumpAllData();
// Test the generated shellcode
static void TestShellcode(string p_sFilename);
};
#endif