1notgo.base64 is a base64-encoded C hello world binary used to test2debug/buildinfo errors on non-Go binaries.34The binary is base64 encoded to hide it from security scanners that might not5like it.67Generate notgo.base64 on linux-amd64 with:89$ cc -o notgo main.c10$ base64 notgo > notgo.base6411$ rm notgo1213The current binary was built with "gcc version 14.2.0 (Debian 14.2.0-3+build4)".1415TODO(prattmic): Ideally this would be built on the fly to better cover all16executable formats, but then we need to encode the intricacies of calling each17platform's C compiler.
Findings
✓ No findings reported for this file.