| Just my two cents about the security aspect. All Linux binaries are compiled with PIE nowadays. You can run `checksec` on any binaries on Ubuntu, and it will have those properties.
(You can install checksec with `pip install pwntools`). On the other hand, GLIBC has, to my knowledge, the most hardened heap implementation out there. And there are more mitigations for double-free and other heap exploits on GLIBC. So in that regard, Alpine is less secure by using musl. Having a small, understandable system is a real advantage when it comes to security. |
How did that look like in your mind that it is a point for (and not against) glibc?