Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .devcontainer/devcontainer.json

This file was deleted.

20 changes: 0 additions & 20 deletions .devcontainer/post_create_command.sh

This file was deleted.

4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ test-suite/gateway-stress/Dockerfile @zama-ai/fhevm-devs

# Coprocessor Team ownership
/coprocessor/ @zama-ai/fhevm-coprocessor

# Enforces changes in Sandboxed AI CI/CD
.github/squid/sandbox-*.conf @zama-ai/infosec
.github/workflows/claude-*.yml @zama-ai/infosec
18 changes: 18 additions & 0 deletions .github/squid/sandbox-proxy-rules.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Strict domain allowlist for CI sandbox
# Only these domains are reachable through the Squid proxy.
# Based on: https://github.com/zama-ai/security-hub/tree/main/docs/how-tos/sandboxed-claude-code
#
# To add a new domain: append ".example.com" to the acl below.
# Leading dot means "this domain and all subdomains".

acl allowed_domains dstdomain \
.api.anthropic.com \
.platform.claude.com \
.github.com

# Allow only explicitly allowed domains
http_access deny !allowed_domains
http_access allow allowed_domains

# Deny everything else
http_access deny all
Loading