Physical Memory reading
-
Hello Can any please tell me if it is possible for an application to read memory outside the memory area allocated to my program..... for example if i want to read first 1000 bytes of memory is it possible? ahmed
-
Hello Can any please tell me if it is possible for an application to read memory outside the memory area allocated to my program..... for example if i want to read first 1000 bytes of memory is it possible? ahmed
As far as I know, when a program attempts to read memory not belonging to it, a crash ensues.
-
Hello Can any please tell me if it is possible for an application to read memory outside the memory area allocated to my program..... for example if i want to read first 1000 bytes of memory is it possible? ahmed
Only if you are coding a driver. My latest article: GBVB - Converting VB.NET code to C#
-
Hello Can any please tell me if it is possible for an application to read memory outside the memory area allocated to my program..... for example if i want to read first 1000 bytes of memory is it possible? ahmed
Muhammad Ahmed wrote: to read memory outside the memory area allocated to my program..... There really isn't a physical memory "allocated" to your program, every application has its own "virtual memory" in the operating system environment and some parts of this space may be in the physical memory while some may be on the pagefile. I think you should first read about the topic "virtual memory" before digging into kernel mode drivers or dos etc.