Security Check and Hardening
Address space layout randomization (ASLR) is a security technology against buffer overflow. It randomizes the layout of linear areas such as heap, stack, and shared library mapping to make it difficult for attackers to predict target addresses and directly locate code, thereby preventing overflow attacks.
echo 2 >/proc/sys/kernel/randomize_va_space

Parent topic: Feature Guide