Hi everyone,
I need to export some Go function as a windows/amd64 DLL which have ASLR and High Entropy VA protections enabled.
I'm currently building the binary using go 1.15 and the command `go build -buildmode=c-shared .`, which generates a DLL with the NX flag but without IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE nor IMAGE_DLLCHARACTERISTICS_HIGH_ENTROPY_VA.
Any clue on how to achieve this?
Thanks,
Quim