Shadow Stack¶
links: Further Topics - Index
Shadow Stack¶
Shadow Stack is a separate stack which stores all return addresses. On every CALL instruction, return addresses are pushed onto both the call stack and shadow stack, and on RET instructions, a comparison is made to ensure integrity is not compromised.
links: Further Topics - Index