使用 Sysinternals.ProcMon 捕获 C 运行时函数调用

发布于 2024-11-29 08:20:39 字数 54 浏览 0 评论 0原文

有没有办法让 ProcMon 中捕获 _stat() C 运行时函数

Is there a way to get _stat() C runtime functions caught in ProcMon

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心是晴朗的。 2024-12-06 08:20:39

不直接,因为(正如 @Preet Sangha 所解释的)它在 CRT 级别以下工作。但是,它确实显示了一个调用堆栈,并且 _stat 确实访问了一个文件。因此,如果 ProcMon 可以访问您的可执行符号并且您知道要监视哪个文件,您可能会在该文件访问的调用堆栈中看到 _stat

如果这还不够,请进一步描述您的场景。

请注意,有一些用于在代码级别进行挂钩的工具 - 请参阅 我怎样才能在 C/C++ 中挂钩 Windows 函数?

Not directly, because (as @Preet Sangha explained) it works below the CRT level. However, it does show you a call stack, and _stat does access a file. So if ProcMon has access to your executable symbols and you know which file to watch, you might see _stat in the call stack of that file's access.

If that is not enough, further describe your scenario.

Note that there are tools for hooking at the code level - see How can I hook Windows functions in C/C++?

撩心不撩汉 2024-12-06 08:20:39

ProcMon 拦截窗口级别的调用(我认为特别是 NTxxxx 和 ZWxxxx 调用)。这些比 C runt time 库要低得多 - 所以我怀疑不是。

ProcMon intercepts calls at the Window levels (specifically NTxxxx and ZWxxxx calls I think). These are way lower than the C runt time library - so I suspect no.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文