Please enable JavaScript.
Coggle requires JavaScript to display documents.
Protection Mechanisms, References, Other ways to protect (Not sure),…
Protection Mechanisms
-
-
-
-
-
-
-
Stack data protection
-
Ideal Stack Layout
Add canary right after each buffer and verify every time before accessing other data stored after it ==> Performance problems
Move the sensitive data out of the way of buffer overflow by re-ordering local variables on the stack
-
-
-
Apple's iOS: Mandatory Code Signing. All code that executes on an iPhone must be signed by a trusted authority
-
-
-
-