记录dll API然后模仿它
有没有一些工具可以在一些c++ dll中记录API,然后回放它们。
在我们的客户站点,我们有一台带有一些供应商软件的机器,可以公开其功能。 我们想记录该 dll,然后在办公室模仿它。
知道我们如何才能做到这一点吗?
感谢您的帮助。
Is there some tool that can record APIs in some c++ dll , and then playback them .
At our costumer site we have a machine with some vendor software that exposes it's functionality .
We wanted to record that dll and then mimic it back at the office .
Any idea how We can do that ?
Thanks for help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 Detours 或其开源等效项 EasyHook。您的挂钩函数可以记录该活动,然后回到办公室您可以编写一个替换 DLL 来重播该活动。
You can start with Detours or its open-source equivalent EasyHook. Your hook function can log the activity, and then back at the office you can write a replacement DLL that replays the activity.