Skip to main content

A Python package for running sandboxed code.

Project description

pybubble

A simple wrapper around bubblewrap to create sandboxed environments for executing code. It works without Docker or other daemon-based container runtimes, using shared read-only root filesystems for quick (1-2ms) setup times.

While these environments are sandboxed and provide protection from accidental modification of your host system by overzealous LLMs, pybubble is not sufficient to protect you against actively malicious code. In general, while containerization solutions like pybubble or Docker offer a reasonable degree of protection from accidental damage, when accepting input from the public you should consider using virtualization in place of or in addition to containers.

Feel free to submit bug reports and pull requests via GitHub, but note that Arcee is not committing to long-term support of this software. I wrote this library in my spare time to solve an irritating problem with building code execution environments, so expect a pace of updates consistent with "time I have while waiting for a debug run to finish".

Due to relying on Linux kernel features to operate, pybubble is not compatible with macOS or Windows.

Setup

Install bwrap. On Ubuntu, do:

$ sudo apt-get install bubblewrap

Optionally, for overlay filesystem support (writable rootfs without modifying the original):

$ sudo apt-get install fuse-overlayfs

For outbound internet access (or port forwarding via enable_outbound=True), install slirp4netns:

$ sudo apt-get install slirp4netns

Basic internal networking (enable_network=True) does not require slirp4netns.

Then, add pybubble to your project.

$ uv add pybubble

Root filesystem archives

Prebuilt wheels for pybubble come bundled with an x86 Alpine Linux root filesystem archive based on default-rootfs.dockerfile. It comes with:

  • Python
  • uv
  • bash
  • ripgrep
  • cURL & wget
  • numpy
  • pandas
  • httpx & requests
  • pillow
  • ImageMagick

If you need more tools or want to run a leaner environment, follow this guide to build one yourself.

Run sandboxed code

from pybubble import Sandbox
import asyncio

async def main():
    with Sandbox(enable_outbound=True) as sbox:
        process = await sbox.run("ping -c 1 google.com")
        stdout, stderr = await process.communicate()
        print(stdout.decode())

        process = await sbox.run_script("print('hello, world')", timeout=5.0)
        stdout, stderr = await process.communicate()
        print(stdout.decode())

if __name__ == "__main__":
    asyncio.run(main())

PTY mode

For interactive programs, pass use_pty=True to get a real pseudoterminal. Ctrl+C, colors, job control, and curses apps all work.

async def main():
    with Sandbox() as sbox:
        proc = await sbox.run("bash", use_pty=True)
        await proc.send(b"echo hello\n")

        async for chunk in proc.stream(decode=True):
            print(chunk, end="")

        await proc.wait()
        proc.close_pty()

Overlay filesystem

With fuse-overlayfs installed, you can make the rootfs writable without modifying the cached original:

with Sandbox(rootfs_overlay=True, enable_outbound=True) as sbox:
    proc = await sbox.run("apk add git")
    await proc.communicate()

Networking

Sandbox networking is configured on construction:

  • enable_network=True enables an isolated internal network namespace.
  • enable_outbound=True adds outbound internet access via slirp4netns.
  • allow_host_loopback=True allows access to host loopback services.

If you only need internal networking between sandboxed processes, leave outbound disabled and slirp4netns is not required.

Port forwarding is available via forward_port(...):

with Sandbox(enable_outbound=True) as sbox:
    sbox.forward_port(8080, 18080)  # sandbox:8080 -> host:18080

Use the CLI

You can also run programs interactively via the CLI.

uv run pybubble run bash
sandbox:~$ echo "Hello, world!"
Hello, world!

With an overlay filesystem:

uv run pybubble run --rootfs-overlay bash
sandbox:~$ apk add nodejs

To learn more about the features available in Sandbox, see this page.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybubble-0.4.0.tar.gz (75.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pybubble-0.4.0-py3-none-any.whl (75.5 MB view details)

Uploaded Python 3

File details

Details for the file pybubble-0.4.0.tar.gz.

File metadata

  • Download URL: pybubble-0.4.0.tar.gz
  • Upload date:
  • Size: 75.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pybubble-0.4.0.tar.gz
Algorithm Hash digest
SHA256 470fcd42c924ac62a28fdae77e34ea057a987746c57c17cf39ecba5e279ee1d9
MD5 4c825d1a791708493ae6580690db959d
BLAKE2b-256 663ab3ce4d285b48ce406a6493d136511f59e5e93b05e475dbc9ffd39886c4d0

See more details on using hashes here.

File details

Details for the file pybubble-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: pybubble-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 75.5 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.10 {"installer":{"name":"uv","version":"0.9.10"},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"22.04","id":"jammy","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for pybubble-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9ceef88f6f0f7a138fa9a4939c52872e229e73cc77d1a73487dad8314cefdd3a
MD5 7c1b84e200ca11847a07f2481c4e3b42
BLAKE2b-256 f4845f74fb6121bcee751a93be55dfbd502146160a0d74578a731d97633ab87b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page