Jump to content

Sandbox (computer security): Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Changed link from Adobash to Adobe Flash (checked history to make sure it was correct)
Trinsic1 (talk | contribs)
Add a "Rule-Based" entry as sandbox technology also covers this type of security.
Line 10: Line 10:
* [[Applet]]s are self-contained programs that run in a [[virtual machine]] or [[scripting language]] [[interpreter (computing)|interpreter]] that does the sandboxing. In [[application streaming]] schemes, the applet is downloaded onto a remote client and may begin executing before it arrives in its entirety. Applets are common in [[web browser]]s, which use the mechanism to safely execute untrusted code embedded in web pages. Three common applet implementations—[[Adobe Flash]], [[Java applet]]s and [[Silverlight]]—provide (at minimum) a rectangular window with which to interact with the user and some persistent storage (at the user's permission).
* [[Applet]]s are self-contained programs that run in a [[virtual machine]] or [[scripting language]] [[interpreter (computing)|interpreter]] that does the sandboxing. In [[application streaming]] schemes, the applet is downloaded onto a remote client and may begin executing before it arrives in its entirety. Applets are common in [[web browser]]s, which use the mechanism to safely execute untrusted code embedded in web pages. Three common applet implementations—[[Adobe Flash]], [[Java applet]]s and [[Silverlight]]—provide (at minimum) a rectangular window with which to interact with the user and some persistent storage (at the user's permission).
* A [[jail (computer security)|jail]] is a set of resource limits imposed on programs by the operating system [[kernel (computer science)|kernel]]. It can include I/O bandwidth caps, disk quotas, network access restrictions and a restricted filesystem namespace. Jails are most commonly used in [[virtual hosting]].
* A [[jail (computer security)|jail]] is a set of resource limits imposed on programs by the operating system [[kernel (computer science)|kernel]]. It can include I/O bandwidth caps, disk quotas, network access restrictions and a restricted filesystem namespace. Jails are most commonly used in [[virtual hosting]].

* Rule-based Execution gives users full control over what processes are started, spawned (by other applications), or allowed to inject code into other apps and have access to the net. It also can control file/registry security (What programs can read and write to the file system/registry) As such, viruses and trojans will have a less likely chance of infecting your PC.

* [[Virtual machine]]s [[emulation|emulate]] a complete host computer, on which a conventional operating system may boot and run as on actual hardware. The guest operating system is sandboxed in the sense that it does not run natively on the host and can only access host resources through the emulator.
* [[Virtual machine]]s [[emulation|emulate]] a complete host computer, on which a conventional operating system may boot and run as on actual hardware. The guest operating system is sandboxed in the sense that it does not run natively on the host and can only access host resources through the emulator.
* Sandboxing on native hosts: Security researchers rely heavily on sandboxing technologies to analyse malware behaviour. By creating an environment that mimics or replicates the targeted desktops, researchers can evaluate how malware infects and compromises a target host.
* Sandboxing on native hosts: Security researchers rely heavily on sandboxing technologies to analyse malware behaviour. By creating an environment that mimics or replicates the targeted desktops, researchers can evaluate how malware infects and compromises a target host.

Revision as of 11:22, 25 January 2009

This article is about the computer security mechanism. For the Wikipedia feature, where newcomers can experiment with editing or established editors can experiment with new features, see Wikipedia:Sandbox.
For the software testing practice, see sandbox (software development).

In computer security, a sandbox is a security mechanism for safely running programs. It is often used to execute untested code, or untrusted programs from unverified third-parties, suppliers and untrusted users.

The sandbox typically provides a tightly-controlled set of resources for guest programs to run in, such as scratch space on disk and memory. Network access, the ability to inspect the host system or read from input devices are usually disallowed or heavily restricted. In this sense, sandboxes are a specific example of virtualization.

Some examples of sandboxes are:

  • Applets are self-contained programs that run in a virtual machine or scripting language interpreter that does the sandboxing. In application streaming schemes, the applet is downloaded onto a remote client and may begin executing before it arrives in its entirety. Applets are common in web browsers, which use the mechanism to safely execute untrusted code embedded in web pages. Three common applet implementations—Adobe Flash, Java applets and Silverlight—provide (at minimum) a rectangular window with which to interact with the user and some persistent storage (at the user's permission).
  • A jail is a set of resource limits imposed on programs by the operating system kernel. It can include I/O bandwidth caps, disk quotas, network access restrictions and a restricted filesystem namespace. Jails are most commonly used in virtual hosting.
  • Rule-based Execution gives users full control over what processes are started, spawned (by other applications), or allowed to inject code into other apps and have access to the net. It also can control file/registry security (What programs can read and write to the file system/registry) As such, viruses and trojans will have a less likely chance of infecting your PC.
  • Virtual machines emulate a complete host computer, on which a conventional operating system may boot and run as on actual hardware. The guest operating system is sandboxed in the sense that it does not run natively on the host and can only access host resources through the emulator.
  • Sandboxing on native hosts: Security researchers rely heavily on sandboxing technologies to analyse malware behaviour. By creating an environment that mimics or replicates the targeted desktops, researchers can evaluate how malware infects and compromises a target host.
  • Capability systems can be thought of as a fine-grained sandboxing mechanism, in which programs are given opaque tokens when spawned and have the ability to do specific things based on what tokens they hold. Mostly capability systems are implemented as a kernel layer. The SELinux and Apparmor security frameworks are two such implementations for Linux.

See also

Research and commercial hosted sandboxes

Several security vendors and research organisations provide access to hosted sandboxes where samples can be submitted and analysed:

  • Sunbelt Software's CWSandbox: [1]
  • The academic site for CWSandbox: [2]
  • International Secure Systems Lab: [3]
  • Norman Sandbox (an emulator, not a native OS):[4]


There is also one Open Source sandbox called Zero Wine