Sandbox Security Configuration SOP
Configures sandbox security in Claude Code, ensuring safe code execution with isolation boundaries and access controls.
Install this skill
Security score
The Sandbox Security Configuration SOP skill was audited on May 23, 2026 and we found 17 security issues across 3 threat categories, including 6 high-severity. Review the findings below before installing.
Categories Tested
Security Issues
Curl to non-GitHub URL
| 524 | if curl -s --max-time 5 https://api.anthropic.com >/dev/null 2>&1; then |
Curl to non-GitHub URL
| 534 | if ! curl -s --max-time 5 https://example-malicious.com >/dev/null 2>&1; then |
Access to /etc/shadow
| 482 | if ! cat /etc/shadow 2>/dev/null; then |
Access to /etc/shadow
| 483 | echo "✓ Cannot read /etc/shadow" |
Access to /etc/shadow
| 486 | echo "✗ Can read /etc/shadow (SECURITY ISSUE)" |
Access to hidden dotfiles in home directory
| 221 | "~/.ssh/**", |
Access to hidden dotfiles in home directory
| 222 | "~/.aws/**", |
Access to hidden dotfiles in home directory
| 223 | "~/.config/**" |
Access to hidden dotfiles in home directory
| 514 | if ! cat ~/.ssh/id_rsa 2>/dev/null; then |
Access to hidden dotfiles in home directory
| 715 | - Denied: /etc, /root, /sys, /proc, /dev, /home, ~/.ssh, ~/.aws |
Access to root home directory
| 216 | "/root/**", |
Access to root home directory
| 289 | deny /root/** rwklx, |
Access to SSH directory
| 221 | "~/.ssh/**", |
Access to SSH directory
| 514 | if ! cat ~/.ssh/id_rsa 2>/dev/null; then |
Access to AWS credentials directory
| 222 | "~/.aws/**", |
External URL reference
| 524 | if curl -s --max-time 5 https://api.anthropic.com >/dev/null 2>&1; then |
External URL reference
| 534 | if ! curl -s --max-time 5 https://example-malicious.com >/dev/null 2>&1; then |