mirror of
https://github.com/jtalamini/shadowstep
synced 2026-06-06 15:54:35 +00:00
18 lines
287 B
C++
18 lines
287 B
C++
#pragma once
|
|
#include <windows.h>
|
|
#include <cstdint>
|
|
|
|
typedef enum {
|
|
ENCRYPTION_XOR,
|
|
ENCRYPTION_RC4
|
|
} EncryptionType;
|
|
|
|
void ApplyCryptInstruction(
|
|
PBYTE* shellcode,
|
|
SIZE_T offset,
|
|
SIZE_T size,
|
|
PBYTE keys,
|
|
SIZE_T keySize,
|
|
EncryptionType encryption
|
|
);
|