the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disallow port 3000 for sandbox ports

+2 -2
+2 -2
apps/cf-sandbox/src/index.ts
··· 736 736 737 737 const { port } = await c.req.json<{ port: number }>(); 738 738 739 - if (!port || port < 1024 || port > 65535) { 739 + if (!port || port < 1024 || port > 65535 || port == 3000) { 740 740 return c.json({ error: "Invalid port number" }, 400); 741 741 } 742 742 ··· 777 777 778 778 const port = parseInt(c.req.query("port") || "0", 10); 779 779 780 - if (!port || port <= 1024 || port > 65535) { 780 + if (!port || port <= 1024 || port > 65535 || port == 3000) { 781 781 return c.json({ error: "Invalid port number" }, 400); 782 782 } 783 783