I have a go binary in my docker image and its causing CVE issues, like this, and it states:
The go command may execute arbitrary code at build time when using
cgo. This may occur when running “go get” on a malicious module, or
when running any other command which builds untrusted code. This is
can by triggered by linker flags, specified via a “#cgo LDFLAGS”
directive. Flags containing embedded spaces are mishandled, allowing
disallowed flags to be smuggled through the LDFLAGS sanitization by
including them in the argument of another flag. This only affects
usage of the gccgo compiler.
I am not able to understand how it impacts the docker images, and how to get rid of it.
Any lead is appreciated.