MCPcopy Create free account
hub / github.com/1401199262/MemoryVirtualization / EncryptData

Function EncryptData

HideMemory.cpp:10–16  ·  view source on GitHub ↗

DeFault Encrypt/Decrypt

Source from the content-addressed store, hash-verified

8
9//DeFault Encrypt/Decrypt
10void EncryptData(DWORD64 lpAddress, size_t size)
11{
12 for (int i = 0; i < size; i++)
13 {
14 ((char*)lpAddress)[i] = ((char*)lpAddress)[i] ^ 'b';
15 }
16}
17
18LONG NTAPI VehExceptionHandler(EXCEPTION_POINTERS* ExceptionInfo)
19{

Callers 2

VehExceptionHandlerFunction · 0.85
AllocateHiddenMemoryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected