From f12b88a408815a96cb4db5d27a859585513a9058 Mon Sep 17 00:00:00 2001 From: arno01 Date: Tue, 12 Mar 2013 10:04:41 +0100 Subject: [PATCH] minor updates --- exam1/NOTES | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 exam1/NOTES diff --git a/exam1/NOTES b/exam1/NOTES new file mode 100644 index 0000000..b2f63b0 --- /dev/null +++ b/exam1/NOTES @@ -0,0 +1,12 @@ +NOTES + + no-stack-protector: disables GCC Stack-Smashing Protector (SSP), aka ProPolice + + execstack: disables Executable space protection (NX). + Or Data Execution Prevention (DEP) on Windows, + or Write XOR Execute (W^X) on BSD. + CPU’s NX bit ("Never eXecute"). + + To disalbe Address Space Layout Randomization (ASLR) when running binary + setarch `arch` -R ./program +