subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
"""Auto-install ModelStudio plugin if missing.""" try: print("Installing ModelStudio plugin...", file=sys.stderr) result = subprocess.run( ["aliyun", "plugin", "install", "--names", "aliyun-cli-modelstudio", "--enable-pre"], capture_output=True,- Confidence
- 95% confidence
- Finding
- The skill automatically installs a local CLI plugin by spawning a package-management style subprocess that modifies the user's environment. Even though arguments are fixed, this is dangerous because it performs an unsolicited software installation with side effects outside the tool's stated retrieval purpose, increasing supply-chain and environment-tampering risk.
