subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
file=sys.stderr, ) try: subprocess.run( [sys.executable, "-m", "pip", "install", "requests>=2.20.0"], check=True, )- Confidence
- 95% confidence
- Finding
- The module can invoke `pip install requests>=2.20.0` at runtime in the current interpreter when an environment variable enables it. Even though the package name is hardcoded, this still changes the host environment, performs network/package execution, and contradicts the skill's read-only incident-response purpose, increasing supply-chain and unintended side-effect risk.
