Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- windows
- sgerrand
- HOS
- PLT
- libc.so
- dangling pointer
- pwndbg
- house of force
- frida-dump
- elf 헤더
- fastbin
- kaslr
- top chunk
- libc-database
- Android
- 계산기
- brop
- patchelf
- return to libraty
- JOP
- kernel debug
- SCP
- cmake
- RAO
- ioploaddrivers
- randtbl
- canary leak
- windows kernel
- WinDBG
- ntwritefile
Archives
- Today
- Total
목록Tools/gdb (1)
sh711 님의 블로그

gdb는 프로그램을 동적으로 분석할 수 있는 동적 분석 도구이다.strace 등과 같이 ptrace를 사용해 프로그램 실행 흐름을 제어할 수 있으며 가장 기본적인 디버깅 도구이다.1. 설치gdb를 설치해준다.apt-get updateapt install gdb 프로그램 gdb 디버깅 주로 사용되는 옵션 및 명령gdb 프로그램 이름gdb attach -p [PID] : pid 프로세스 디버깅run : 실행entry : ELF 헤더를 기준으로 entry 포인트 진입start : main() 함수 진입disassemble 함수명 : 함수 디스어셈블set disassembly-flavor intel : intel 방식의 표현으로 바꿔줌break *메모리 : 특정 위치 브레이크 포인트info registers :..
Tools/gdb
2025. 3. 4. 23:28