![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FcvFlRN%2FbtsJiaMJxi5%2FBRPh0EtIWmg758HbPkkAkk%2Fimg.png)
gdb ์ ๋ฆฌ
ยท
Study/Pwnable
1. pwndbg ์ค์น (ubuntu 22.04) https://github.com/pwndbg/pwndbg GitHub - pwndbg/pwndbg: Exploit Development and Reverse Engineering with GDB Made EasyExploit Development and Reverse Engineering with GDB Made Easy - pwndbg/pwndbggithub.com 2. ๋๋ฒ๊น
(1) ํ์ผ ์์ฑ// Name: debugee.c// Compile: gcc -o debugee debugee.c -no-pie#include int main(void) { int sum = 0; int val1 = 1; int val2 = 2; sum = val1 + v..