subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
if "--update" in sys.argv: _venv_python = _SCRIPT_DIR.parent / ".venv" / "bin" / "python" if shutil.which("uv"): subprocess.run( ["uv", "pip", "install", "--python", str(_venv_python), "--upgrade", "faster-whisper"], check=True, )- Confidence
- 91% confidence
- Finding
- subprocess.run( ["uv", "pip", "install", "--python", str(_venv_python), "--upgrade", "faster-whisper"], check=True, )
