如何在Rhino JavaScript引擎中配置沙箱安全性

发布于 2024-10-05 08:25:54 字数 73 浏览 1 评论 0原文

我想解释 html 页面脚本,但想禁用任何损害我的计算机的可能性。有没有官方教程或示例如何配置此类功能? (我在官方网站上没有找到)

I want to interpret html pages scripts, but want to disable any posibility of harming my computer. Is there are any official tutorial or example how to configure such feature? (i dont find it in offcial site)

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

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

发布评论

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

评论(3

囚我心虐我身 2024-10-12 08:25:54

运行这样的初始脚本:

java = undefined;
Packages = undefined;
org = undefined;
...

然后将其放入沙箱中。

run an initial script like this:

java = undefined;
Packages = undefined;
org = undefined;
...

then it is sandboxed.

╭ゆ眷念 2024-10-12 08:25:54

我还没有看到任何官方示例,但请参阅 这个问题,特别是这个关于 Rhino 沙箱的文章。这篇文章很好地概述了您必须设置和防范的事情。

I haven't seen any official example, but see this SO question and particularly this article on sandboxing in Rhino. The article gives a pretty good overview of the things you'll have to set up and guard against.

月下凄凉 2024-10-12 08:25:54

谨防反思
“out.println('outclass' + out.getClass().forName('java.io.File'));”

这项交易有很多陷阱。以前的答案不够好。

Beware reflection
"out.println('outclass ' + out.getClass().forName('java.io.File'));"

There are many traps to this trade. Previous answer not good enough.

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