mirror of
https://github.com/louislam/dockge.git
synced 2025-03-13 04:44:46 +00:00
Merge 673fb8f8dd
into 01906205f0
This commit is contained in:
commit
db8b768b37
1 changed files with 3 additions and 0 deletions
|
@ -294,11 +294,14 @@ export class MainTerminal extends InteractiveTerminal {
|
|||
// Check if the command is allowed
|
||||
const cmdParts = input.split(" ");
|
||||
const executable = cmdParts[0].trim();
|
||||
const knownOperators = ["||", "&", ";"];
|
||||
log.debug("console", "Executable: " + executable);
|
||||
log.debug("console", "Executable length: " + executable.length);
|
||||
|
||||
if (!allowedCommandList.includes(executable)) {
|
||||
throw new Error("Command not allowed.");
|
||||
} else if (knownOperators.some(operator => input.includes(operator))) {
|
||||
throw new Error("Control operators are not allowed.");
|
||||
}
|
||||
super.write(input);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue