Accessing direct memory addresses and obtaining the values in C++

前端 未结 5 1380
遇见更好的自我
遇见更好的自我 2020-12-31 04:14

I was wondering if it was possible to access a direct block of memory using C/C++ and grab the value. For example:

int i = 15;
int *p = &i;
cout <<         


        
5条回答
  •  醉梦人生
    2020-12-31 04:39

    A bit late, but you still could this through a DLL injection. Here is a link to a tutorial: http://resources.infosecinstitute.com/using-createremotethread-for-dll-injection-on-windows/

提交回复
热议问题