我有一个流程A
,我用CreateProcess()
创建流程B
。在A
我使用ReadProcessMemory()
andWriteProcessMemory()
来读取/写入B
.
现在我想在B
through中打印一些东西A
,我应该翻译printf()
成 X86 并使用WriteProcessMemory()
to write into B
,还是有其他方法可以做到这一点?
我有一个流程A
,我用CreateProcess()
创建流程B
。在A
我使用ReadProcessMemory()
andWriteProcessMemory()
来读取/写入B
.
现在我想在B
through中打印一些东西A
,我应该翻译printf()
成 X86 并使用WriteProcessMemory()
to write into B
,还是有其他方法可以做到这一点?