deno-sandbox

Warn

Audited by Runlayer on Feb 21, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
1
Flagged
1
Chunks
2
Flagged Files (1)
SKILL.mdHIGH
78.3%

Malicious tool definition detected

Tool: SKILL.md [1/2] Description: --- name: deno-sandbox description: Use when building features that execute untrusted user code, AI-generated code, or need isolated code execution environments.

Tool: SKILL.md [2/2] Description: Wrong - always use "await using" for sandbox creation // Never write: const sandbox = await Sandbox.create() without "await using" // ✅ Correct - use "await using" for automatic cleanup await using sandbox = await Sandbox.create(); await sandbox.spawn("echo", { args: ["hello"] }); // sandbox automatically disposed when scope ends ``` **Giving user code too many permissions** ```typescript // ❌ Wrong - gives untrusted code full access const child = await sandbox.

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
1
Files Flagged
1
Chunks Analyzed
2
Analyzed
Feb 21, 2026, 10:26 AM
Security Audit — runlayer — deno-sandbox