当前位置:网站首页>win32:堆破坏的dump文件分析
win32:堆破坏的dump文件分析
2022-07-03 17:50:00 【修的什么真】
- win32堆结构
在解决实际问题以前,先来了解一下相关概念
1. 堆结构
堆->段->块
堆是由段,段是由块组成的,块就是用户最终向系统申请的虚拟内存的数据结构。(目前我们用户态程序只需要理解块就可以了)
2. _HEAP_ENTRY结构
每个堆,每个段,每个块都会有相应的_HEAP_ENTRY结构,里面描述了该区域内容的信息。比如块的_HEAP_ENTRY结构就存放了所属的堆,段,前项大小和当前大小等信息。
- windbg堆的相关命令
- 查看所有堆的概览信息:!heap -s
- 某个堆所有的段和块信息:!heap -a 0xXXXXXXXX
- 查看某个内存地址所在的_HEAP_ENTRY信息:!heap -x 0xXXXXXXXX
- 统计某个堆的概览信息:!heap -stat -h 0xXXXXXXXX
- 列出所有大小为X的块地址:!heap -flt s X
- 查看堆的调试支持:!gflag
- 查看内存块的内容 dc 0xXXXXXXXX
- 堆破坏的调试
1. 什么叫做堆破坏
堆破坏其实就是块破坏,由于对超出地址所在分配的空间读写,导致破坏了_HEAP_ENTRY结构(如果是CRT堆,就是破坏了CRT堆的末尾检查结构,甚至破坏了下一个块的结构)
2. 一个堆破坏的例子
这里故意写了一个越界的操作,编译成release版本,用windbg挂上去
查看一下ptr的值
查看一下ptr所在的_HEAP_ENTRY结构,发现属于00b30000这个堆,在00b34420这个块里面
我们看到上述块后续的块都已经被破坏,所以堆破坏的特征基本就长这样。但是该例程并不会导致崩溃。
3. 总结一下分析思路
a) 找到该崩溃的块所在的堆(可以根据地址范围判断)。
b) 查看该堆所有块信息。
c) 从最后一个尚未被破坏的块找到相应的信息。(如果业务逻辑是从小往大地址写,就会破坏往后块,否则就是相反)
边栏推荐
- List of financial products in 2022
- [combinatorics] recursive equation (special solution form | special solution solving method | special solution example)
- Enterprise custom form engine solution (XI) -- form rule engine 1
- When absolutely positioned, the element is horizontally and vertically centered
- 聊聊支付流程的设计与实现逻辑
- Collection of the most beautiful graduation photos in the graduation season, collection of excellent graduation photos
- Kotlin's collaboration: Context
- As soon as we enter "remote", we will never regret, and several people will be happy and several people will be sad| Community essay solicitation
- AcWing 4489. Longest subsequence
- Analysis report on production and marketing demand and investment forecast of China's PVC industry from 2021 to 2026
猜你喜欢
[combinatorics] recursive equation (summary of the solution process of recursive equation | homogeneous | double root | non-homogeneous | characteristic root is 1 | exponential form | the bottom is th
The third day of writing C language by Yabo people
Baiwen.com 7 days Internet of things smart home learning experience punch in the next day
Draw some simple graphics with MFC
一入“远程”终不悔,几人欢喜几人愁。| 社区征文
[combinatorics] generating function (summation property)
基于人脸识别的课堂考勤系统 tkinter+openpyxl+face_recognition
List的stream中Long对象与long判等问题记录
MySQL has been stopped in the configuration interface during installation
互聯網醫院HIS管理平臺源碼,在線問診,預約掛號 智慧醫院小程序源碼
随机推荐
AcWing 4489. Longest subsequence
The third day of writing C language by Yabo people
Cloud primordial weekly | CNCF released the 2021 cloud primordial development status report, which was released on istio 1.13
[mathematical logic] equivalent calculus and reasoning calculus of predicate logic (individual word | predicate | quantifier | predicate logic formula | two basic formulas | proposition symbolization
Micro service component sentinel console call
TCP拥塞控制详解 | 3. 设计空间
(9) Opencv Canny edge detection
Web-ui automated testing - the most complete element positioning method
Embedded-c language-7
What is the difference between cloud server and cloud virtual machine
MinGW compile boost library
Interviewer: why is the value nil not equal to nil?
SQL injection database operation foundation
POM in idea XML graying solution
互聯網醫院HIS管理平臺源碼,在線問診,預約掛號 智慧醫院小程序源碼
Ml (machine learning) softmax function to realize the classification of simple movie categories
Assembly for unloading Loadfrom() loaded assembly - unloading the assembly loaded with assembly LoadFrom()
WEB-UI自动化测试-最全元素定位方法
Internet hospital his management platform source code, online consultation, appointment registration smart hospital applet source code
OpenSSL的SSL/BIO_get_fd