| 12 | #define MAGIC 0xff, 0xff, 0xdd, 0x11, 0x99, 0x10 |
| 13 | |
| 14 | struct ShellCode { |
| 15 | uint8_t shellcode[MAX_ENCRYPT_SHELLCODE] = { |
| 16 | MAGIC |
| 17 | }; |
| 18 | uint32_t shellcode_size = 0; |
| 19 | uint32_t shellcode_real_size = 0; |
| 20 | }; |
| 21 | |
| 22 | ShellCode shellcode; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected