subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
raise BridgeError("powershell_missing", "PowerShell is required to install the AideNote bridge.") command = [powershell, "-NoProfile", "-ExecutionPolicy", "Bypass", "-File", str(installer)] try: completed = subprocess.run( command, env=installer_environment, capture_output=True,- Confidence
- 82% confidence
- Finding
- completed = subprocess.run( command, env=installer_environment, capture_output=True, text=True, timeout=600, check=False
