Computer memory scan

How to search for a given sequence of bytes in computer memory? The ReadProcessMemory API is not suitable, as it only reads the process memory, not the whole memory.

Are there any existing solutions?

+3
source share
2 answers

Here is Device \ PhysicalMemory , but remember that user mode access is not allowed for some versions of Windows (see link). If you want to use it, you will find this article useful (find "5.2 chmod_mem.c" for some sample code).

+2
source

- .

- , .

+1

Source: https://habr.com/ru/post/1731787/


All Articles