subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
def ensure_cli_plugins(): """Ensure required aliyun CLI plugins are installed.""" try: subprocess.run(['aliyun', 'configure', 'set', '--auto-plugin-install', 'true'], capture_output=True, text=True, timeout=10) except Exception: pass- Confidence
- 95% confidence
- Finding
- subprocess.run(['aliyun', 'configure', 'set', '--auto-plugin-install', 'true'], capture_output=True, text=True, timeout=10)
