Search code examples
c++csecurityfreebsd

How can I disable ASLR on FreeBSD?


I'm currently taking a computer security class and would like to try to port some of the class example exploits to my FreeBSD machine. For linux, I was able to disable ASLR by using

"echo 0 > /proc/sys/kernel/randomize_va_space".  Compiling with "-fno-stack-protector -z execstack"

flags on gcc disables NX and canaries, and I assume that will be the same for FreeBSD. Does FreeBSD have similar functionality to disable ASLR though?
Thank you for your time.


Solution

  • There is no address space randomization feature on FreeBSD.