Spaces:
Paused
Paused
File size: 964 Bytes
fb4d8fe | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | const SHELL_METACHARS = /[;&|`$<>]/;
const CONTROL_CHARS = /[\r\n]/;
const QUOTE_CHARS = /["']/;
const BARE_NAME_PATTERN = /^[A-Za-z0-9._+-]+$/;
function isLikelyPath(value: string): boolean {
if (value.startsWith(".") || value.startsWith("~")) {
return true;
}
if (value.includes("/") || value.includes("\\")) {
return true;
}
return /^[A-Za-z]:[\\/]/.test(value);
}
export function isSafeExecutableValue(value: string | null | undefined): boolean {
if (!value) {
return false;
}
const trimmed = value.trim();
if (!trimmed) {
return false;
}
if (trimmed.includes("\0")) {
return false;
}
if (CONTROL_CHARS.test(trimmed)) {
return false;
}
if (SHELL_METACHARS.test(trimmed)) {
return false;
}
if (QUOTE_CHARS.test(trimmed)) {
return false;
}
if (isLikelyPath(trimmed)) {
return true;
}
if (trimmed.startsWith("-")) {
return false;
}
return BARE_NAME_PATTERN.test(trimmed);
}
|