peda의 플러그인이다.
디버깅을 할 때 유용한 정보를 확인할 수 있다.
cd ~/
git clone https://github.com/scwuaptx/Pwngdb.git
cp ~/Pwngdb/.gdbinit ~/
사용해보면서 유용한 명령어들을 추가하자.
- Print some infomation of heap
gdb-peda$ heapinfo [Address of arena]
- default is the arena of current thread
- If tcache is enable, it would show infomation of tcache entry
- Print useful variable and function in glibc
- Parse heap layout
- 힙 메모리를 구조에 맞게 분석해준다.