fix: use canonical prefix containment check for CodeQL path-injection

This commit is contained in:
2026-08-07 14:22:44 -05:00
parent 3522270373
commit 56db634900
+6 -6
View File
@@ -4331,10 +4331,10 @@ def _chown_to_caddy(path: str) -> None:
"""Set the owner of a file to caddy:root (best-effort).""" """Set the owner of a file to caddy:root (best-effort)."""
# CodeQL path-injection: ensure path is inside DOMAINS_DIR or is NJALLA_SCRIPT # CodeQL path-injection: ensure path is inside DOMAINS_DIR or is NJALLA_SCRIPT
try: try:
base_dir = os.path.abspath(DOMAINS_DIR)
njalla_file = os.path.abspath(NJALLA_SCRIPT)
abs_path = os.path.abspath(path) abs_path = os.path.abspath(path)
domains_dir = os.path.abspath(DOMAINS_DIR) if abs_path != njalla_file and not abs_path.startswith(base_dir + os.sep):
njalla_script = os.path.abspath(NJALLA_SCRIPT)
if abs_path != njalla_script and os.path.commonpath([domains_dir, abs_path]) != domains_dir:
return return
pw = pwd.getpwnam("caddy") pw = pwd.getpwnam("caddy")
os.chown(abs_path, pw.pw_uid, 0) os.chown(abs_path, pw.pw_uid, 0)
@@ -4539,9 +4539,9 @@ async def api_domains_set(req: DomainSetRequest):
if safe_name != req.domain_name or not _validate_safe_name(safe_name): if safe_name != req.domain_name or not _validate_safe_name(safe_name):
raise HTTPException(status_code=400, detail="Invalid domain_name") raise HTTPException(status_code=400, detail="Invalid domain_name")
domain_path = os.path.abspath(os.path.join(DOMAINS_DIR, safe_name)) base_dir = os.path.abspath(DOMAINS_DIR)
domains_dir = os.path.abspath(DOMAINS_DIR) domain_path = os.path.abspath(os.path.join(base_dir, safe_name))
if os.path.commonpath([domains_dir, domain_path]) != domains_dir: if not domain_path.startswith(base_dir + os.sep):
raise HTTPException(status_code=400, detail="Invalid domain_name") raise HTTPException(status_code=400, detail="Invalid domain_name")
with open(domain_path, "w") as f: with open(domain_path, "w") as f: