subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
"""Auto-install the ModelStudio plugin.""" try: print("Auto-installing ModelStudio plugin...", file=sys.stderr) result = subprocess.run( ["aliyun", "plugin", "install", "--names", "aliyun-cli-modelstudio", "--enable-pre"], capture_output=True,- Confidence
- 94% confidence
- Finding
- This subprocess call automatically installs a plugin on the host as a side effect of key-management logic. While not command injection, it performs an unexpected system modification and network-backed package installation without explicit user consent, which is risky in an agent/skill context.
