For the following example has been granted read-only access to the file system. It cannot write to the file system, or perform any other security sensitive functions.

    The following permissions are available:

    • —allow-env=\ Allow environment access for things like getting and setting of environment variables. Since Deno 1.9, you can specify an optional, comma-separated list of environment variables to provide an allow-list of allowed environment variables.
    • —allow-hrtime Allow high-resolution time measurement. High-resolution time can be used in timing attacks and fingerprinting.
    • —allow-net=\ Allow network access. You can specify an optional, comma-separated list of IP addresses or hostnames (optionally with ports) to provide an allow-list of allowed network addresses.
    • —allow-ffi Allow loading of dynamic libraries. Be aware that dynamic libraries are not run in a sandbox and therefore do not have the same security restrictions as the Deno process. Therefore, use with caution. Please note that —allow-ffi is an unstable feature.
    • —allow-read=\ Allow file system read access. You can specify an optional, comma-separated list of directories or files to provide an allow-list of allowed file system access.
    • —allow-write=\ Allow file system write access. You can specify an optional, comma-separated list of directories or files to provide an allow-list of allowed file system access.
    • -A, —allow-all Allow all permissions. This enables all security sensitive functions. Use with caution.

    Some permissions allow you to grant access to a specific list of entities (files, servers, etc) rather than to everything.

    File system access

    This example restricts file system access by allowing read-only access to the /usr directory. In consequence the execution fails as the process was attempting to read a file in the /etc directory:

    1. $ deno run --allow-read=/usr https://deno.land/std@$STD_VERSION/examples/cat.ts /etc/passwd
    2. error: Uncaught PermissionDenied: read access to "/etc/passwd", run again with the --allow-read flag
    3. $deno$/dispatch_json.ts:40:11
    4. at DenoError ($deno$/errors.ts:20:5)
    5. ...
    1. deno run --allow-read=/etc https://deno.land/std@$STD_VERSION/examples/cat.ts /etc/passwd

    --allow-write works the same as --allow-read.

    Network access

    This is an example of how to allow network access to specific hostnames or ip addresses, optionally locked to a specified port:

    1. # Multiple hostnames, all ports allowed
    2. deno run --allow-net=github.com,deno.land fetch.js
    3. # A hostname at port 80:
    4. # An ipv4 address on port 443
    5. deno run --allow-net=1.1.1.1:443 fetch.js
    6. # A ipv6 address, all ports allowed
    7. deno run --allow-net=[2606:4700:4700::1111] fetch.js

    If tries to establish network connections to any hostname or IP not explicitly allowed, the relevant call will throw an exception.

    1. deno run --allow-net fetch.js

    Environment variables

    This is an example of how to allow access to environment variables:

    1. # Allow all environment variables
    2. deno run --allow-env env.js
    3. # Allow access to only the HOME env var
    4. deno run --allow-env=HOME env.js

    Note for Windows users: environment variables are case insensitive on Windows, so Deno also matches them case insensitively (on Windows only).

    Subprocess permissions

    Subprocesses are very powerful, and can be a little scary: they access system resources regardless of the permissions you granted to the Deno process that spawns them. The cat program on unix systems can be used to read files from disk. If you start this program through the Deno.run API it will be able to read files from disk even if the parent Deno process can not read the files directly. This is often referred to as privilege escalation.

    Because of this, make sure you carefully consider if you want to grant a program --allow-run access: it essentially invalidates the Deno security sandbox. If you really need to spawn a specific executable, you can reduce the risk by limiting which programs a Deno process can start by passing specific executable names to the --allow-run flag.

    1. const proc = Deno.run({ cmd: ["whoami"] });

    Permission flags were explained by Ryan Dahl in his 2020 talk about the Deno security model at Speakeasy JS: