| 10 | } |
| 11 | |
| 12 | void WindowsShellCodeInvoke::p64(UINT64 src, UINT8 *dst) { |
| 13 | for (int i = 0; i < 8; i++) { |
| 14 | dst[i] = src & 0xff; |
| 15 | src >>= 8; |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | LPVOID WindowsShellCodeInvoke::VirtualAllocMemory(LPVOID base, UINT32 size, UINT32 flAllocationType, UINT32 flProtect) { |
| 20 | UINT64 base_address = (UINT64)base; |
nothing calls this directly
no outgoing calls
no test coverage detected