mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 17:08:10 +00:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
// Resolves the Windows taskkill binary without trusting PATH.
|
|
import path from "node:path";
|
|
|
|
const DEFAULT_WINDOWS_SYSTEM_ROOT = "C:\\Windows";
|
|
|
|
function getEnvValueCaseInsensitive(env, expectedKey) {
|
|
const direct = env[expectedKey];
|
|
if (direct !== undefined) {
|
|
return direct;
|
|
}
|
|
const expected = expectedKey.toUpperCase();
|
|
const actualKey = Object.keys(env).find((key) => key.toUpperCase() === expected);
|
|
return actualKey ? env[actualKey] : undefined;
|
|
}
|
|
|
|
function normalizeWindowsSystemRoot(raw) {
|
|
const trimmed = raw?.trim();
|
|
if (
|
|
!trimmed ||
|
|
trimmed.includes("\0") ||
|
|
trimmed.includes("\r") ||
|
|
trimmed.includes("\n") ||
|
|
trimmed.includes(";")
|
|
) {
|
|
return null;
|
|
}
|
|
const normalized = path.win32.normalize(trimmed);
|
|
if (!path.win32.isAbsolute(normalized) || normalized.startsWith("\\\\")) {
|
|
return null;
|
|
}
|
|
const parsed = path.win32.parse(normalized);
|
|
if (!/^[A-Za-z]:\\$/.test(parsed.root) || normalized.length <= parsed.root.length) {
|
|
return null;
|
|
}
|
|
return normalized.replace(/[\\/]+$/, "");
|
|
}
|
|
|
|
export function resolveWindowsTaskkillPath(env = process.env) {
|
|
const systemRoot =
|
|
normalizeWindowsSystemRoot(getEnvValueCaseInsensitive(env, "SystemRoot")) ??
|
|
normalizeWindowsSystemRoot(getEnvValueCaseInsensitive(env, "WINDIR")) ??
|
|
DEFAULT_WINDOWS_SYSTEM_ROOT;
|
|
return path.win32.join(systemRoot, "System32", "taskkill.exe");
|
|
}
|