Having fun with PE files and GoLang
2 minute read Published:
Opening PE files with GoLang
New blog design, new post.
Today I will show how GoLang interacts with PE files in a generic example. You could look further into the native module here or even check its source code here. I do recommend reading it, I am using some bits of code extracted directly from the module source.
Here you go.
package main import ( "fmt" "debug/pe" "os" "io" "encoding/binary" ) func check(e error) { if e !