可以反汇编 Firefox XPCOM 吗?
是否可以从 Firefox XPCOM DLL 恢复(伪)代码? 我知道有一个名为 XPCOMViewer 的 Firefox 插件,它向我显示类和接口,这工作正常,但我需要更多地了解这个 XPCOM 的作用。
该插件有一个“生成代码”功能,无论如何,当我尝试执行此操作时没有任何反应。
您对我如何做到这一点有什么建议吗?
it is possible to restore (pseudo) code from a Firefox XPCOM DLL?
I know there is a Firefox plugin called XPCOMViewer what shows me classes and interfaces and this works fine but I need more to know about what this XPCOM do.
The plugin has a function "Generate Code", anyway nothing happens when I try to do this.
Have you any advice for me how I could do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,它是一个常规 DLL,可以像任何其他可执行文件一样进行反汇编。如果您希望得到比汇编更容易理解的东西,那么不行——XPCOM DLL 是根据特殊约定构建的常规 DLL。
Yes, it's a regular DLL and can be disassembled as any other executable. If you expect to get something more understandable than assembly, then no - XPCOM DLLs are regular DLLs built according to special conventions.