mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-04-05 10:52:36 +00:00
fix(filesystem): add media directory exemption to filesystem tool path checks
This commit is contained in:
parent
bc879386fe
commit
624f607872
@ -21,7 +21,9 @@ def _resolve_path(
|
||||
p = workspace / p
|
||||
resolved = p.resolve()
|
||||
if allowed_dir:
|
||||
all_dirs = [allowed_dir] + (extra_allowed_dirs or [])
|
||||
from nanobot.config.paths import get_runtime_subdir
|
||||
media_path = get_runtime_subdir("media").resolve()
|
||||
all_dirs = [allowed_dir] + [media_path] + (extra_allowed_dirs or [])
|
||||
if not any(_is_under(resolved, d) for d in all_dirs):
|
||||
raise PermissionError(f"Path {path} is outside allowed directory {allowed_dir}")
|
||||
return resolved
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user