我正在编写一个小型内存扫描器应用程序来查找内存中的指针 但我似乎没有得到预期的结果。
我有以下代码:
[DllImport("kernel32.dll")]
private static extern bool ReadProcessMemory(IntPtr hProcess, IntPtr lpBaseAddress, [Out] byte[] buffer, UInt32 size, IntPtr lpNumberOfBytesRead);
public int ReadInt(long Address)
{
byte[] buffer = new byte[4];
ReadProcessMemory(ProcessHandle, (IntPtr)Address, buffer, 4, IntPtr.Zero); // this always returns true
return BitConverter.ToInt32(buffer, 0);
}
public List<long> SearchInt(long start, long end, int value)
{
List<long> results = new List<long>();
for (long i = start; i < end; i++)
{
try
{
if (ReadInt(i) == value)
results.Add(i);
}
catch (Exception)
{
break; // no exceptions occur
}
}
return results;
}
如果我调用这样的方法:
SearchInt(baseAddress.ToInt64(), lastAddress.ToInt64(), 1234)
我知道一个事实,即我正在阅读的过程有一个整数,其值为1234,但我没有得到任何结果。如果我扫描其他值,我有时会得到结果。
baseAddress
是process.MainModule.BaseAddress
和
lastAddress
为baseAddress + process.MainModule.ModuleMemorySize
我在这里错过了什么吗?
答案 0 :(得分:2)
如果您要搜索的值在运行时初始化而不是静态编译代码的一部分,则此操作无效。然后它将位于BaseAddress
+ ModuleMemorySize
来自ProcessModule.ModuleMemorySize
:
ModuleMemorySize不包含任何额外的内存分配 一旦它运行,模块就会生成;它只包括大小 模块文件中的静态代码和数据。