The MASM Forum Archive 2004 to 2012

General Forums => The Campus => Topic started by: loki_dre on June 15, 2008, 07:43:28 PM

Title: Reading OS(Windows) memory
Post by: loki_dre on June 15, 2008, 07:43:28 PM
Anyone know if it is possible to READ any/all memory used by Windows (ie.Windows XP), without using API

Currently trying to find a faster way to read video data of a window (currently using "PrintWindow" which copies the data.....but I just need to read it)
btw("PrintWindow" will access the data even if a window is overlapping it)

Title: Re: Reading OS(Windows) memory
Post by: hutch-- on June 16, 2008, 12:28:20 AM
loki,

The simple answer is no unless you have written the app that you want to read yourself and have built into it a mechanism to do this. Basically a protected mode OS is designed to prevent any external access to memory which of course includes the OS code and data and I doubt you can get around this in a safe way.