Notice
Recent Posts
Recent Comments
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- debugging
- x64
- idb2pat
- ida
- open office xml
- commandline
- pytest
- ida pro
- data distribution
- why error
- svn update
- TensorFlow
- malware
- 포인터 매핑
- Analysis
- idapython
- mock.patch
- Python
- Rat
- h5py.File
- Ransomware
- error fix
- idapro
- javascript
- Injection
- hex-rays
- NumPy Unicode Error
- ecma
- MySQL
- error
Archives
- Today
- Total
목록2014/03 (2)
13 Security Lab
debug print 코드의 흐름을 파악, 프로그램이 죽는 위치 찾기
코드의 흐름을 파악하기 어렵거나, 프로그램이 죽는 위치를 찾기 어려울때 #define DBG_CHECK printf("(%s:%s:%d)n",__FILE__,__FUNCTION__,__LINE__); int main() { DBG_CHECK; return 0; } DBG_CHECK가 위치하는 파일,함수명,라인번호의 정보가 화면에 출력
Computer Science/Programming
2014. 3. 7. 21:14
Symbols for Kernel Debugging
Symbols for Kernel Debugging Symbol files contain the names of functions and variables and the layout and format of data structures.They are generated by the linker and used by debuggers to reference and display these names during a debug session. This information is not usually stored in the binary image because it isnot needed to execute the code. This means that binaries are smaller and faste..
Computer Science/Windows Externals
2014. 3. 2. 10:49