드림핵 Memory Corruption: Stack Buffer Overflow 실습 관련 부분에 대해서 짧게 설명해보겠습니당 (실행 흐름 조작) // Name: sbof_ret_overwrite.c// Compile: gcc -o sbof_ret_overwrite sbof_ret_overwrite.c -fno-stack-protector#include #include int main(void) { char buf[8]; printf("Overwrite return address with 0x4141414141414141: "); gets(buf); return 0;} (출처 : https://learn.dreamhack.io/60#8) 주어진 코드는 위와 같습니다 리턴 주소를 0x4141...뭐 저걸로..