Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 538 Bytes

10.md

File metadata and controls

18 lines (10 loc) · 538 Bytes

Buffer Overflows and Memory Alteration

Overview

Buffer Overflows are a common vulnerability. We will discuss how to exploit a buffer overflow to alter memory on the stack, changing variable values and return addresses in order to control the flow of execution in a program.

Program to Explore the stack

stackframe.c stackframe

image

Vulnerable Program

stackframe_vuln.c stackframe_vuln