Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道要查找文本(代码)部分的基地址,应该查找 .text 部分的虚拟地址(除非启用了 ASLR),但是堆栈呢?
堆栈内存是否与堆一起存储在 .data 部分中?如果是这样,我应该查找 .data 部分虚拟地址以了解堆栈基地址
堆栈不是一个部分。堆栈是为每个线程动态分配的。(如果它是一个部分,那么每个进程只能有一个线程。)