c/c++ how can i get base address of .exe running process?

前端 未结 2 1700
一整个雨季
一整个雨季 2021-01-17 08:04

Im looking for a method/function that i can use to get base address of \"program.exe\"+03262C08 -> B4895A0. This address is from Cheat Engine and base addres

2条回答
  •  滥情空心
    2021-01-17 08:31

    Windows has been using Address Space Layout Randomization for about a decade now, but the module base in EXE's is far older than that. Simply ignore it, it's now meaningless.

    And don't forget: each process has its own address space. A pointer in one process is meaningless in the other.

提交回复
热议问题