CVE-2026-52726: Shell Command Replace Injectioncve-2026-52726-shell-command-replace-injection
Constructing shell commands by substituting string placeholders with unquoted variables via `str.replace()` can lead to OS command injection. Ensure replacements use `shlex.quote()` to escape the injected values before passing the command to subprocess.
PythonCVE-2026-52726