Skip to content
Vol. 1 · Ed. 2026
CyberGlossary
Entry № 129

Browser Sandbox

What is Browser Sandbox?

Browser SandboxAn OS-level isolation layer that confines a browser's renderer and helper processes so that compromised web code cannot read the file system or other applications.


A browser sandbox is the set of operating-system mechanisms that the browser process uses to constrain less-trusted child processes — renderers, GPU process, plugins, network service — to a minimal set of capabilities. Chromium uses Windows job objects and integrity levels, macOS Seatbelt, and Linux seccomp-bpf plus namespaces; Firefox uses similar primitives. Even if attacker JavaScript or a renderer-level memory corruption succeeds, the sandbox prevents arbitrary file access, command execution, or interaction with other processes without an additional sandbox escape. Together with Site Isolation, the sandbox is the modern browser's primary defense against drive-by exploits, and is regularly stress-tested at Pwn2Own where a full sandbox-escape chain is required to win.

Examples

  1. 01

    Chrome renderer running as a low-integrity job object with token restrictions on Windows.

  2. 02

    Pwn2Own contestants chaining a renderer RCE with a sandbox escape to gain full code execution.

Frequently asked questions

What is Browser Sandbox?

An OS-level isolation layer that confines a browser's renderer and helper processes so that compromised web code cannot read the file system or other applications. It belongs to the Application Security category of cybersecurity.

What does Browser Sandbox mean?

An OS-level isolation layer that confines a browser's renderer and helper processes so that compromised web code cannot read the file system or other applications.

How does Browser Sandbox work?

A browser sandbox is the set of operating-system mechanisms that the browser process uses to constrain less-trusted child processes — renderers, GPU process, plugins, network service — to a minimal set of capabilities. Chromium uses Windows job objects and integrity levels, macOS Seatbelt, and Linux seccomp-bpf plus namespaces; Firefox uses similar primitives. Even if attacker JavaScript or a renderer-level memory corruption succeeds, the sandbox prevents arbitrary file access, command execution, or interaction with other processes without an additional sandbox escape. Together with Site Isolation, the sandbox is the modern browser's primary defense against drive-by exploits, and is regularly stress-tested at Pwn2Own where a full sandbox-escape chain is required to win.

How do you defend against Browser Sandbox?

Defences for Browser Sandbox typically combine technical controls and operational practices, as detailed in the full definition above.

What are other names for Browser Sandbox?

Common alternative names include: Renderer sandbox.

Related terms

See also