Go Lang
Go Lang¶
- Statically Linked Files
- No dependency issues
- Hard to detect malware
- Reverse Engineering time consuming
Cross Compile¶
GOOS=windows go build
GOOS=linux GOARCH=ppc64 go build
Strip Binaries¶
go build -o hello_strip -ldflags "-s" hello.go