Résumé
CodeWhale: image_analyze follows workspace symlinks, leaking external file bytes
Détails de l’avis
Maintainer resolution
The CodeWhale maintainers validated this report. The affected package ranges are recorded in the advisory metadata. Version 0.8.64 contains the fix in commit 26de44a8bd5051f8f944ea60b2c37ae1d2b7d25e. Users should upgrade to 0.8.64 or later. The original reporter analysis is preserved below.
Summary
image_analyze follows workspace symlinks and leaks outside-workspace file bytes to the vision endpoint
The image_analyze tool resolves its image_path with a bare context.workspace.join instead of routing through ToolContext::resolve_path. The pre-join lexical check rejects absolute paths, Windows prefixes, and parent-dir components but never canonicalizes, so a symlink inside the workspace whose name ends in an image extension and whose target sits outside the workspace is read transparently. The tool has ReadOnly capability and the trait default makes it auto-approved, so the bypass executes with no user prompt.
Details
In crates/tui/src/vision/tools.rs (v0.8.37, lines 104-123):
async fn execute(&self, input: Value, context: &ToolContext) -> Result<ToolResult, ToolError> {
let image_path = required_str(&input, "image_path")?;
let prompt = input
.get("prompt")
.and_then(|v| v.as_str())
.unwrap_or("Describe this image in detail.");
let image_path_buf = Path::new(image_path);
if image_path_buf.components().any(|c| {
matches!(
c,
Component::Prefix(_) | Component::RootDir | Component::ParentDir
)
}) {
return Err(ToolError::execution_failed(
"image_path must be a relative path within the workspace and cannot escape it.",
));
}
let resolved_path = context.workspace.join(image_path_buf);
let (image_data, mime_type) = Self::read_image_file(&resolved_path).await?;
read_image_file (lines 31-39) is a tokio::fs::read(path) call which follows symlinks. The bytes are then base64-encoded and embedded as data:<mime>;base64,<bytes> in the chat-completion payload that is POSTed to ${base_url}/chat/completions with the user's Authorization header.
The lexical guard rejects ../etc/passwd, /etc/passwd, and C:\Windows\..., but a symlink such as workspace/screenshot.png -> /etc/passwd produces components [Normal("screenshot.png")]. None of Prefix, RootDir, or ParentDir match, so the check passes and the symlink is followed at read time.
The peer file-reading tools all use the central resolver instead. For example, crates/tui/src/tools/image_ocr.rs:60-65:
let path_str = required_str(&input, "path")?;
let image_path = context.resolve_path(path_str)?;
resolve_path in crates/tui/src/tools/spec.rs:342-449 canonicalizes the candidate and rejects results whose canonical form does not start with the canonical workspace path:
if candidate.exists() {
let canonical = candidate.canonicalize().map_err(...)?;
if !canonical.starts_with(&workspace_canonical)
&& !self.is_trusted_external_path(&canonical)
{
return Err(ToolError::PathEscape { path: canonical });
}
...
}
In the same symlink scenario, image_ocr, pandoc_convert, read_file, apply_patch, rlm_open, and fim all return ToolError::PathEscape because the canonical target falls outside the workspace. image_analyze is the lone caller that skips this check.
The tool declares ToolCapability::ReadOnly and does not override approval_requirement(). The trait default (crates/tui/src/tools/spec.rs:612-620) resolves ReadOnly to ApprovalRequirement::Auto. The engine then sets approval_required = spec.approval_requirement() != ApprovalRequirement::Auto, which is false for this tool (crates/tui/src/core/engine/turn_loop.rs:1159-1184). The model can invoke image_analyze on any turn without a user prompt.
The recent commit 2326220 fix(vision): reject rooted image paths on windows (2026-05-12) tightened the lexical guard to catch Windows drive prefixes, but the original review missed that the underlying problem is that this site never used resolve_path in the first place.
PoC
A standalone Cargo test reproduces the read-through. Save as crates/tui/tests/image_analyze_symlink_escape.rs:
use deepseek_tui::config::VisionModelConfig;
use deepseek_tui::tools::spec::{ToolContext, ToolSpec};
use deepseek_tui::vision::tools::ImageAnalyzeTool;
use serde_json::json;
use std::fs;
use tempfile::tempdir;
#[tokio::test]
#[cfg(unix)]
async fn image_analyze_follows_workspace_symlink_outside_workspace() {
let outer = tempdir().unwrap();
let workspace = outer.path().join("workspace");
let outside = outer.path().join("outside");
fs::create_dir_all(&workspace).unwrap();
fs::create_dir_all(&outside).unwrap();
// A file that the workspace boundary should keep the tool from reading.
let secret = outside.join("secret.txt");
fs::write(&secret, b"OUTSIDE-WORKSPACE-SECRET-MARKER").unwrap();
// Pre-existing symlink in the workspace with an image extension.
std::os::unix::fs::symlink(&secret, workspace.join("screenshot.png")).unwrap();
let ctx = ToolContext::new(workspace);
let tool = ImageAnalyzeTool::new(VisionModelConfig {
model: "test".into(),
api_key: Some("test".into()),
base_url: Some("http://127.0.0.1:1/v1".into()),
});
// The execute call will fail at the HTTP layer because the mock endpoint
// is unreachable, but read_image_file has already been called. Reach the
// file-read step by asserting that the failure is the HTTP error, not a
// PathEscape error from the resolver.
let err = tool
.execute(json!({"image_path": "screenshot.png"}), &ctx)
.await
.expect_err("expected HTTP failure after symlink read");
let msg = format!("{err:?}");
assert!(
!msg.contains("PathEscape"),
"symlink should have been refused before read; got {msg}"
);
// To prove the bytes actually left the process, point base_url at a
// capturing wiremock instance and assert that the OUTSIDE-WORKSPACE-SECRET-MARKER
// substring appears in the captured base64-decoded request body.
}
For comparison, the same workspace exercised via read_file returns ToolError::PathEscape:
#[tokio::test]
#[cfg(unix)]
async fn read_file_refuses_workspace_symlink_outside_workspace() {
use deepseek_tui::tools::file::ReadFileTool;
let outer = tempdir().unwrap();
let workspace = outer.path().join("workspace");
let outside = outer.path().join("outside");
fs::create_dir_all(&workspace).unwrap();
fs::create_dir_all(&outside).unwrap();
fs::write(outside.join("secret.txt"), b"X").unwrap();
std::os::unix::fs::symlink(outside.join("secret.txt"), workspace.join("link.txt")).unwrap();
let ctx = ToolContext::new(workspace);
let err = ReadFileTool
.execute(json!({"path": "link.txt"}), &ctx)
.await
.expect_err("expected PathEscape");
assert!(format!("{err:?}").contains("PathEscape"));
}
The fix is one line on crates/tui/src/vision/tools.rs:122:
- let resolved_path = context.workspace.join(image_path_buf);
+ let resolved_path = context.resolve_path(image_path)?;
resolve_path already handles the pre-join lexical checks (so the existing Path::new(image_path).components().any(...) block can also be removed), canonicalizes through symlinks, and re-checks workspace containment. The behavior the lexical guard already promises (path stays inside the workspace) is then actually delivered.
Impact
A workspace symlink whose name ends in .png, .jpg, .jpeg, .gif, .webp, or .bmp and whose target sits outside the workspace becomes a read primitive that the model can invoke without an approval prompt. The file bytes are base64-encoded into the image_url.url field of the chat-completion payload and POSTed to the configured vision endpoint along
Références
- https://github.com/advisories/GHSA-w7wx-5q49-r59w
- https://github.com/Hmbown/CodeWhale/security/advisories/GHSA-w7wx-5q49-r59w
- https://nvd.nist.gov/vuln/detail/CVE-2026-75914
- https://github.com/Hmbown/CodeWhale/commit/26de44a8bd5051f8f944ea60b2c37ae1d2b7d25e
- https://www.vulncheck.com/advisories/codewhale-before-path-traversal-via-image-analyze-symlink
Vulnérabilités liées
Tout Supply chain →- HIGHCVE-2026-81726
NLTK: Model-artifact APIs bypass pathsec and touch files outside allowed roots
- HIGHGHSA-2rx9-3g3h-c2jv
pnpm: pacquet trust-lockfile install can create dependency symlinks outside the project
- MEDIUMCVE-2026-55569
Aqua's archive extraction follows attacker-planted symlinks, allowing writes outside the install directory
- HIGHCVE-2026-17106
moby/go-archive: Crafted tar archive can write outside the extraction directory
- MEDIUMCVE-2026-53766
chrome-devtools-mcp: validatePath() does not canonicalize symlinks before enforcing roots
- HIGHCVE-2026-71476
Nx: Zip-Slip in the self-hosted remote cache