是否可以将 .EXE 转换为 ActiveX 对象?
转换可能是错误的词,但为了让用户不必安装某些东西,我想知道是否可以使用 ActiveX 将一个小 EXE 嵌入到网页(仅限 IE)中,以便在按下按钮时运行它。显然这是一个很大的安全漏洞,但这可行吗?
Convert might be the wrong word, but to save a user having to install something I wondered if a small EXE can be embedded in a web-page (IE only) using ActiveX so it is run when a button is pressed. Obviously a big security hole but is it feasible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
呃,光是想想就让我心里有点死了。
但是,可以,将 exe 和 activex 打包在 cab 文件中,然后使用 activex 启动 exe。
有关打包 ActiveX cab 文件的信息位于:http: //msdn.microsoft.com/en-us/library/aa751974(v=vs.85).aspx
有关 Inf 文件(特别是 DestDir位): http://msdn.microsoft.com /en-us/library/aa741215(v=vs.85).aspx
这将允许您将 exe 放在已知位置(Windows 或系统),以便您可以从提供权限的activex控件设置正确
Urgh, just thinking about it makes me die a little inside.
But yes, package up the exe and the activex in a cab file and use the activex to launch the exe.
Info on packaging up ActiveX cab files is here: http://msdn.microsoft.com/en-us/library/aa751974(v=vs.85).aspx
A bit more information on Inf files (specifically the DestDir bit): http://msdn.microsoft.com/en-us/library/aa741215(v=vs.85).aspx
This would allow you to put the exe in a known location (Windows or System) so that you could execute it from the activex control providing permissions were set correctly