Earlier quoted context omitted.
> nearly every Go project in the world having to be patched and recompiled Is that a particular problem? What's the difficulty with recompiling?
Imagine you are a random person in charge of a computer. You hear there's this big vuln affecting Go programs. 1. How do I find out which programs on my system are Go programs? I have a lot of programs scattered all over. Someone will have to come up with a method (probably search through $PATH for files, run `strings` on it, grep for "Go" , pray that's enough) to identify them. 2. They don't list a website, so I hav…
Well how are these programs getting onto your system?
Presumably via some package manager, or an image builder?
Don't those manage the update for you?
If you're running code that you don't know who wrote, with no source code, that you can't patch, that nobody is taking responsibility for, then yeah you've got issues. But you had issues already if that's the predicament you're in. Some of this applies to Java too - obfuscation breaks the fixes you described using!