🛠️ 환경 설정개발 환경OS: Ubuntu (UTM)Editor: VSCode (SSH 연결)언어: C, Python3설치한 도구들 bash # 기본 도구sudo apt updatesudo apt install -y gdb gdb-multiarch gcc make git# Python & pwntoolssudo apt install -y python3 python3-pippip3 install pwntools# pwndbg (GDB 플러그인)cd ~git clone https://github.com/pwndbg/pwndbgcd pwndbg./setup.sh Buffer Overflow란?기본 개념**Buffer Overflow (BOF)**는 버퍼에 할당된 크기보다 많은 데이터를 입력..