Also, you can check your glibc version with this tiny code:
#include <stdio.h> #include <gnu/libc-version.h> int main (void) { puts (gnu_get_libc_version ()); return 0; }
<= 2.17 is unsafe, >= 2.18 is safe.
ldd --version might also do the trick.
Also, you can check your glibc version with this tiny code:
(taken from a forum that I've since closed the page on, sorry for lack of attribution)<= 2.17 is unsafe, >= 2.18 is safe.
ldd --version might also do the trick.