mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 11:07:41 +00:00
Security/Gateway: harden Control UI static path containment (#21203)
* Security/Gateway: harden Control UI static path containment * gateway: block control-ui symlink escapes * CI: retrigger flaky node test lane --------- Co-authored-by: Brian Mendonca <brianmendonca@Brians-MacBook-Air.local>
This commit is contained in:
@@ -3,6 +3,7 @@ import type { IncomingMessage, ServerResponse } from "node:http";
|
||||
import path from "node:path";
|
||||
import type { OpenClawConfig } from "../config/config.js";
|
||||
import { resolveControlUiRootSync } from "../infra/control-ui-assets.js";
|
||||
import { isWithinDir } from "../infra/path-safety.js";
|
||||
import { DEFAULT_ASSISTANT_IDENTITY, resolveAssistantIdentity } from "./assistant-identity.js";
|
||||
import {
|
||||
CONTROL_UI_BOOTSTRAP_CONFIG_PATH,
|
||||
@@ -264,6 +265,9 @@ function isSafeRelativePath(relPath: string) {
|
||||
return false;
|
||||
}
|
||||
const normalized = path.posix.normalize(relPath);
|
||||
if (path.posix.isAbsolute(normalized) || path.win32.isAbsolute(normalized)) {
|
||||
return false;
|
||||
}
|
||||
if (normalized.startsWith("../") || normalized === "..") {
|
||||
return false;
|
||||
}
|
||||
@@ -418,8 +422,8 @@ export function handleControlUiHttpRequest(
|
||||
return true;
|
||||
}
|
||||
|
||||
const filePath = path.join(root, fileRel);
|
||||
if (!filePath.startsWith(root)) {
|
||||
const filePath = path.resolve(root, fileRel);
|
||||
if (!isWithinDir(root, filePath)) {
|
||||
respondNotFound(res);
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user