Vinci
👋 Welcome to V1nci’s Blog!
Linux ASLR (Address Space Layout Randomization) Description: ASLR randomly arrages the address space positions of key data areas of a process,including the base of the executeable and the positions of the stack, heap and libraries. Check Status: cat /proc/sys/kernel/randomize_va_space Enable: sudo sysctl -w kernel.randomize_va_space=2 Value: 0: Disabled 1: Partial (randomizes stack, mmap regions, but not heap) 2: Full (randomizes all regions) More Information: WikiPedia Stack Canary Description: Canaries or canary or stack cookies are know value that are placed between a buffer and control data on the stack to monitor buffer overflows....