Skip to main content
formatting
Source Link
miken32
  • 42.5k
  • 16
  • 127
  • 177

Actually printf("%p\n", &system);printf("%p\n", &system); doesn't print the libc addresses it actually prints system@pltthe system@plt address, which is not randomized by ASLR

But it does randomize the libc address which ultimately protects the ret2libc attack !!

Actually printf("%p\n", &system); doesn't print the libc addresses it actually prints system@plt address which is not randomized by ASLR

But it does randomize the libc address which ultimately protects the ret2libc attack !!

Actually printf("%p\n", &system); doesn't print the libc addresses it actually prints the system@plt address, which is not randomized by ASLR

But it does randomize the libc address which ultimately protects the ret2libc attack !!

Source Link

Actually printf("%p\n", &system); doesn't print the libc addresses it actually prints system@plt address which is not randomized by ASLR

But it does randomize the libc address which ultimately protects the ret2libc attack !!