Files
go_pwner/shellcode_exec_other.go
T
2026-07-18 21:37:15 +03:00

11 lines
232 B
Go

//go:build !windows
package winpwn
import "errors"
// ExecuteShellcode is only available when winpwn is built for Windows.
func ExecuteShellcode(code []byte) error {
return errors.New("ExecuteShellcode requires GOOS=windows")
}