Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

find process address pointer + offset

Status
Not open for further replies.

heiron

Programmer
Dec 1, 2014
2
0
0
GR
Hi,
I have this code
Code:
while (!ReadProcessMemory(hProcess, (LPVOID)dwLocation, &FirstByte, sizeof(FirstByte), NULL) || FirstByte != 0x55)
I want to read from a process the First BYTE, I want to find the dwLocation of the process, I know it is process.exe + offset = address, how can I find them? shall I use a debugger or something?

Thank you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top