Stop the execution of the shellcode.
| 41 | |
| 42 | // Stop the execution of the shellcode. |
| 43 | VOID shellcode::exit() |
| 44 | { |
| 45 | // Just break. |
| 46 | __debugbreak(); |
| 47 | }; |
| 48 | |
| 49 | // Length of wide string |
| 50 | size_t shellcode::wstr_len(PWSTR str) |
nothing calls this directly
no outgoing calls
no test coverage detected