Windows NT4 stack and heap address space

半世苍凉 提交于 2019-12-11 11:57:40

问题


I'm trying to search for an integer value in the stack and heap memory of Windows NT4. This integer is used by another program.

The problem is I don't know the address range of the stack and heap, is there a way to find the range of this address space?

Previously I've tried searching this integer value in the code space by using EnumProcessModules function of PSAPI (a windows api). From this function, I get the addresses containing the modules of the program which I can then search through to find some variables. This technique works for simple programs like Minesweeper, somehow, it fail to find any useful integer or variables in more complex programs.

Thanks in advance to anybody who can help me with this.

来源:https://stackoverflow.com/questions/8724162/windows-nt4-stack-and-heap-address-space

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!