213 lines
5.6 KiB
Markdown
213 lines
5.6 KiB
Markdown
# fence
|
|
|
|

|
|
|
|
A Go implementation of process sandboxing with network and filesystem restrictions.
|
|
|
|
`fence` wraps commands in a sandbox that blocks network access by default and restricts filesystem operations based on configurable rules. Useful for AI coding agents, untrusted code execution, or running processes with controlled side effects.
|
|
|
|
## Features
|
|
|
|
- **Network Isolation**: All network access blocked by default
|
|
- **Domain Allowlisting**: Configure which domains are allowed
|
|
- **Filesystem Restrictions**: Control read/write access to paths
|
|
- **Violation Monitoring**: Real-time logging of blocked requests and sandbox denials
|
|
- **Cross-Platform**: macOS (sandbox-exec) and Linux (bubblewrap)
|
|
- **HTTP/SOCKS5 Proxies**: Built-in filtering proxies for domain control
|
|
|
|
You can use `fence` as a Go package or CLI tool.
|
|
|
|
## Installation
|
|
|
|
```bash
|
|
go install github.com/Use-Tusk/fence/cmd/fence@latest
|
|
```
|
|
|
|
Or build from source:
|
|
|
|
```bash
|
|
git clone https://github.com/Use-Tusk/fence
|
|
cd fence
|
|
go build -o fence ./cmd/fence
|
|
```
|
|
|
|
## Quick Start
|
|
|
|
```bash
|
|
# This will be blocked (no domains allowed by default)
|
|
fence curl https://example.com
|
|
|
|
# Run with shell expansion
|
|
fence -c "echo hello && ls"
|
|
|
|
# Enable debug logging
|
|
fence -d curl https://example.com
|
|
```
|
|
|
|
## Configuration
|
|
|
|
Create `~/.fence.json` to configure allowed domains and filesystem access:
|
|
|
|
```json
|
|
{
|
|
"network": {
|
|
"allowedDomains": ["github.com", "*.npmjs.org", "registry.yarnpkg.com"],
|
|
"deniedDomains": ["evil.com"]
|
|
},
|
|
"filesystem": {
|
|
"denyRead": ["/etc/passwd"],
|
|
"allowWrite": [".", "/tmp"],
|
|
"denyWrite": [".git/hooks"]
|
|
}
|
|
}
|
|
```
|
|
|
|
### Network Configuration
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `allowedDomains` | List of allowed domains. Supports wildcards like `*.example.com` |
|
|
| `deniedDomains` | List of denied domains (checked before allowed) |
|
|
| `allowUnixSockets` | List of allowed Unix socket paths (macOS) |
|
|
| `allowAllUnixSockets` | Allow all Unix sockets |
|
|
| `allowLocalBinding` | Allow binding to local ports |
|
|
| `httpProxyPort` | Fixed port for HTTP proxy (default: random available port) |
|
|
| `socksProxyPort` | Fixed port for SOCKS5 proxy (default: random available port) |
|
|
|
|
### Filesystem Configuration
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `denyRead` | Paths to deny reading (deny-only pattern) |
|
|
| `allowWrite` | Paths to allow writing |
|
|
| `denyWrite` | Paths to deny writing (takes precedence) |
|
|
| `allowGitConfig` | Allow writes to `.git/config` files |
|
|
|
|
### Other Options
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| `allowPty` | Allow pseudo-terminal (PTY) allocation in the sandbox (for MacOS) |
|
|
|
|
## CLI Usage
|
|
|
|
```text
|
|
fence [flags] -- [command...]
|
|
|
|
Flags:
|
|
-c string Run command string directly (like sh -c)
|
|
-d, --debug Enable debug logging (shows sandbox command, proxy activity, filter rules)
|
|
-m, --monitor Monitor mode (shows blocked requests and violations only)
|
|
-p, --port Expose port for inbound connections (can be repeated)
|
|
-s, --settings Path to settings file (default: ~/.fence.json)
|
|
-v, --version Show version information
|
|
-h, --help Help for fence
|
|
```
|
|
|
|
### Examples
|
|
|
|
```bash
|
|
# Block all network (default behavior)
|
|
fence curl https://example.com
|
|
# Output: curl: (56) CONNECT tunnel failed, response 403
|
|
|
|
# Use a custom config
|
|
fence --settings ./my-config.json npm install
|
|
|
|
# Run a shell command
|
|
fence -c "git clone https://github.com/user/repo && cd repo && npm install"
|
|
|
|
# Debug mode shows proxy activity
|
|
fence -d wget https://example.com
|
|
|
|
# Monitor mode shows violations/blocked requests only
|
|
fence -m npm install
|
|
|
|
# Expose a port for inbound connections
|
|
fence -p 3000 -c "npm run dev"
|
|
```
|
|
|
|
## Library Usage
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/Use-Tusk/fence/pkg/fence"
|
|
)
|
|
|
|
func main() {
|
|
// Create config
|
|
cfg := &fence.Config{
|
|
Network: fence.NetworkConfig{
|
|
AllowedDomains: []string{"api.example.com"},
|
|
},
|
|
Filesystem: fence.FilesystemConfig{
|
|
AllowWrite: []string{"."},
|
|
},
|
|
}
|
|
|
|
// Create manager (debug=false, monitor=false)
|
|
manager := fence.NewManager(cfg, false, false)
|
|
defer manager.Cleanup()
|
|
|
|
// Initialize (starts proxies)
|
|
if err := manager.Initialize(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
// Wrap a command
|
|
wrapped, err := manager.WrapCommand("curl https://api.example.com/data")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println("Sandboxed command:", wrapped)
|
|
}
|
|
```
|
|
|
|
## How It Works
|
|
|
|
### macOS (sandbox-exec)
|
|
|
|
On macOS, fence uses Apple's `sandbox-exec` with a generated seatbelt profile that:
|
|
|
|
- Denies all operations by default
|
|
- Allows specific Mach services needed for basic operation
|
|
- Controls network access via localhost proxies
|
|
- Restricts filesystem read/write based on configuration
|
|
|
|
### Linux (bubblewrap)
|
|
|
|
On Linux, fence uses `bubblewrap` (bwrap) with:
|
|
|
|
- Network namespace isolation (`--unshare-net`)
|
|
- Filesystem bind mounts for access control
|
|
- PID namespace isolation
|
|
- Unix socket bridges for proxy communication
|
|
|
|
For detailed security model, limitations, and architecture, see [ARCHITECTURE.md](ARCHITECTURE.md).
|
|
|
|
## Requirements
|
|
|
|
### macOS
|
|
|
|
- macOS 10.12+ (uses `sandbox-exec`)
|
|
- No additional dependencies
|
|
|
|
### Linux
|
|
|
|
- `bubblewrap` (for sandboxing)
|
|
- `socat` (for network bridging)
|
|
|
|
Install on Ubuntu/Debian:
|
|
|
|
```bash
|
|
apt install bubblewrap socat
|
|
```
|
|
|
|
## Attribution
|
|
|
|
Portions of this project are derived from Anthropic's [sandbox-runtime](https://github.com/anthropic-experimental/sandbox-runtime) (Apache-2.0). This repository contains modifications and additional original work.
|