Converting your GO bins to Shellcode and Using them in C#
How to convert binaries compiled in golang to shellcode
Building Go Binary
package main
import(
"fmt"
"os/exec"
)
func main(){
c := exec.Command("calc.exe")
if err := c.Run(); err != nil {
fmt.Println("Error: ", err)
}
}Converting Binary to Shellcode
Using DonutTest
Credits:
Last updated