aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2022-09-19 15:38:35 -0500
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2022-09-19 15:38:35 -0500
commit670f55f539280f711c945abac95f603ae9bcf876 (patch)
tree591b6ce4c10ffd89494ab3005ca1fb5f7cb39c52 /chapter08
parent3d65730e220e697fad48dc8d1b0d688a83c8180e (diff)
Typos
Diffstat (limited to 'chapter08')
-rw-r--r--chapter08/gcc.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter08/gcc.xml b/chapter08/gcc.xml
index c5c446e9a..a36720374 100644
--- a/chapter08/gcc.xml
+++ b/chapter08/gcc.xml
@@ -112,7 +112,7 @@ cd build</userinput></screen>
PIE (position-independent executable) is a technique to produce
binary programs that can be loaded anywhere in memory. Without PIE,
the security feature named ASLR (Address Space Layout Randomization)
- can be applied for the shared libraries, but not the exectutable
+ can be applied for the shared libraries, but not the executable
itself. Enabling PIE allows ASLR for the executables in addition to
the shared libraries, and mitigates some attacks based on fixed
addresses of sensitive code or data in the executables.