Flash 和 javascript 外部接口安全
使用ExternalInterface 在flash 和javascript 之间共享数据安全吗?我正在构建一个游戏,我想将分数传递给 js,不确定这是否足够安全。
谢谢
Is it safe to share data between flash and javascript using ExternalInterface? I'm building a game where I want to pass scores to js, not sure if this is safe enough.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么是安全的。只需使用浏览器的开发者控制台、覆盖由ExternalInterface 调用的函数并拦截参数,即可轻松检索传递给JavaScript 的任何内容。
Nothing is safe. Anything you pass to JavaScript could be easily retrieved just by using a browser's developer console, by overriding the function called by ExternalInterface and intercepting the arguments.