Last active
September 20, 2018 09:07
-
-
Save EdoardoVignati/20c48d26c0c10b370ac4e2d860961176 to your computer and use it in GitHub Desktop.
Disable/Enable ASLR (Address space layout randomization)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Disable # | |
echo 0 | sudo tee /proc/sys/kernel/randomize_va_space | |
# Enable # | |
echo 2 | sudo tee /proc/sys/kernel/randomize_va_space |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment