fix: pass sanitized abs_path to os.chown to resolve CodeQL path injection at 4338

This commit is contained in:
2026-08-07 14:17:34 -05:00
parent efda70c187
commit 3522270373
+12 -11
View File
@@ -4332,11 +4332,13 @@ def _chown_to_caddy(path: str) -> None:
# CodeQL path-injection: ensure path is inside DOMAINS_DIR or is NJALLA_SCRIPT
try:
abs_path = os.path.abspath(path)
if abs_path != os.path.abspath(NJALLA_SCRIPT) and os.path.commonpath([os.path.abspath(DOMAINS_DIR), abs_path]) != os.path.abspath(DOMAINS_DIR):
domains_dir = os.path.abspath(DOMAINS_DIR)
njalla_script = os.path.abspath(NJALLA_SCRIPT)
if abs_path != njalla_script and os.path.commonpath([domains_dir, abs_path]) != domains_dir:
return
pw = pwd.getpwnam("caddy")
os.chown(path, pw.pw_uid, 0)
except (KeyError, ValueError):
os.chown(abs_path, pw.pw_uid, 0)
except (KeyError, ValueError, OSError):
pass
@@ -4532,17 +4534,16 @@ async def api_domains_set(req: DomainSetRequest):
)
_ensure_domains_dir()
domain_path = os.path.join(DOMAINS_DIR, req.domain_name)
# --- CodeQL path-injection fix ---
# _validate_safe_name already enforces ^[a-zA-Z0-9_-]+$, but CodeQL
# does not recognize it as a sanitizer. Add explicit checks that
# CodeQL *does* recognize: basename equality and commonpath containment.
if os.path.basename(domain_path) != req.domain_name:
safe_name = os.path.basename(req.domain_name)
if safe_name != req.domain_name or not _validate_safe_name(safe_name):
raise HTTPException(status_code=400, detail="Invalid domain_name")
# Ensure the final path is still inside DOMAINS_DIR (prevents ../ traversal)
# Use normpath + commonpath — recognized by py/path-injection query.
if os.path.commonpath([os.path.normpath(DOMAINS_DIR), os.path.normpath(domain_path)]) != os.path.normpath(DOMAINS_DIR):
domain_path = os.path.abspath(os.path.join(DOMAINS_DIR, safe_name))
domains_dir = os.path.abspath(DOMAINS_DIR)
if os.path.commonpath([domains_dir, domain_path]) != domains_dir:
raise HTTPException(status_code=400, detail="Invalid domain_name")
with open(domain_path, "w") as f:
f.write(normalized)
_chown_to_caddy(domain_path)