有没有像 Reflector 这样的 COM 库工具?
有没有像 Reflector 这样的 COM 库工具? 我想打开一个 COM 库并浏览类和接口,就像在 Reflector 中一样。 如果可能的话,我宁愿不安装 Visual Basic 6.0 来执行此操作。
Is there a tool like Reflector for COM libraries? I would like to open a COM library and browse the classes and interfaces just like in Reflector. I would rather not install Visual Basic 6.0 in order to do this, if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
但方式不同,有许多工具可以让您检查类型库。 例如OleView。
您还可以通过简单地将 COM 库添加到 .NET 项目来很好地了解 COM 库中的类型。 然后,您可以使用对象浏览器来浏览生成的互操作程序集,甚至可以在程序集上使用 Reflector。
Not in the same way however there are number of tools that allow you to examine the type library. For example OleView.
You can also get a good idea of the types inside COM library by simply adding it to a .NET project. You can then use object browser to browser the resulting interop assembly or even use Reflector on the assembly.
即使此工具的正常原因是对 COM 对象进行安全评估,您仍然可以尝试 ComRaider - http://labs.idefense.com/software/fuzzing.php#more_comraider
与 Oleview 类似。
Even though normal reason for this tool is doing security assessment for COM objects you can still try ComRaider - http://labs.idefense.com/software/fuzzing.php#more_comraider
It's similar to Oleview.