EasyHook - CRT 调试断言失败 - "Buffer too small"
EasyHook - CRT Debug Assertion Failed - "Buffer too small"
我有一个调用以下(删节)代码的注入器:
var processes = Process.GetProcessesByName("target");
/* ... */
var process = processes[0];
/* ... */
process.Kill();
RemoteHooking.CreateAndInject(process.MainModule.FileName, string.Empty, 0,
InjectionOptions.NoService | InjectionOptions.DoNotRequireStrongName,
typeof(EntryPoint).Assembly.Location, typeof(EntryPoint).Assembly.Location,
out injectedProcessId, null);
应该注入的DLL只有以下代码:
public class EntryPoint : IEntryPoint {
public EntryPoint(RemoteHooking.IContext InContext) {}
public void Run(RemoteHooking.IContext InContext) {
RemoteHooking.WakeUpProcess();
Thread.Sleep(5000);
}
}
不幸的是,注入器崩溃了,典型的 Windows 错误报告工具出现了,根本没有视觉异常消息,甚至没有进入 DLL。事件视图的错误是这个:
Faulting application name: TestInjector.vshost.exe, version: 14.0.23107.0, time stamp: 0x559b788a
Faulting module name: EasyHook64.dll, version: 2.7.0.0, time stamp: 0x589704aa
Exception code: 0xc0000409
Fault offset: 0x0000000000091a9b
当运行处于调试模式时,我无法一步步通过 EasyHook 代码找到关键位置,但我至少遇到一个异常:
对于如何进一步调试此问题并找出导致它的原因,您有什么建议吗?我什至尝试关闭各种应用程序以减少干扰,但无济于事。
我可以解决这个错误 - 我正在调用的应用程序也得到了一个命令行参数(不幸的是它不在我的示例代码中),这对于库来说太长了。因此,我增加了缓冲区大小 right here as well as the referring call to it right here,它现在可以正常工作了。
我有一个调用以下(删节)代码的注入器:
var processes = Process.GetProcessesByName("target");
/* ... */
var process = processes[0];
/* ... */
process.Kill();
RemoteHooking.CreateAndInject(process.MainModule.FileName, string.Empty, 0,
InjectionOptions.NoService | InjectionOptions.DoNotRequireStrongName,
typeof(EntryPoint).Assembly.Location, typeof(EntryPoint).Assembly.Location,
out injectedProcessId, null);
应该注入的DLL只有以下代码:
public class EntryPoint : IEntryPoint {
public EntryPoint(RemoteHooking.IContext InContext) {}
public void Run(RemoteHooking.IContext InContext) {
RemoteHooking.WakeUpProcess();
Thread.Sleep(5000);
}
}
不幸的是,注入器崩溃了,典型的 Windows 错误报告工具出现了,根本没有视觉异常消息,甚至没有进入 DLL。事件视图的错误是这个:
Faulting application name: TestInjector.vshost.exe, version: 14.0.23107.0, time stamp: 0x559b788a
Faulting module name: EasyHook64.dll, version: 2.7.0.0, time stamp: 0x589704aa
Exception code: 0xc0000409
Fault offset: 0x0000000000091a9b
当运行处于调试模式时,我无法一步步通过 EasyHook 代码找到关键位置,但我至少遇到一个异常:
对于如何进一步调试此问题并找出导致它的原因,您有什么建议吗?我什至尝试关闭各种应用程序以减少干扰,但无济于事。
我可以解决这个错误 - 我正在调用的应用程序也得到了一个命令行参数(不幸的是它不在我的示例代码中),这对于库来说太长了。因此,我增加了缓冲区大小 right here as well as the referring call to it right here,它现在可以正常工作了。