You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ShadowNode should be able to run a script in sandbox mode, which means the modules the script can access should be restricted. Within this feature, every defined application could run in a safe environment for the host.
Permissions
A sandbox should own the following permissions:
--allow-fs the script can use file system.
--allow-net the script can use networking API.
--allow-tls the script can use TLS API.
--allow-fork the script can use Child Process API to fork/exec sub-processes.
--allow-global-module the script can load global modules.
native module (.node) are always disabled.
By default, if it starts with iotjs --sandbox, the above permissions are not enabled. To enable one or more of them, you should append the params before the script like the below:
What's the sandbox?
ShadowNode should be able to run a script in sandbox mode, which means the modules the script can access should be restricted. Within this feature, every defined application could run in a safe environment for the host.
Permissions
A sandbox should own the following permissions:
--allow-fs
the script can use file system.--allow-net
the script can use networking API.--allow-tls
the script can use TLS API.--allow-fork
the script can use Child Process API to fork/exec sub-processes.--allow-global-module
the script can load global modules.By default, if it starts with
iotjs --sandbox
, the above permissions are not enabled. To enable one or more of them, you should append the params before the script like the below:/cc @legendecas @algebrait @lolBig
The text was updated successfully, but these errors were encountered: