os.system() or os exec-family call
High
- Category
- Dangerous Code Execution
- Content
try: import openpyxl except ImportError: os.system("pip install openpyxl -q") import openpyxl- Confidence
- 98% confidence
- Finding
- The script executes `pip install openpyxl -q` at runtime via `os.system`, which modifies the host environment and performs network-driven code acquisition during normal execution. This is dangerous because a reporting skill should not silently install packages, and if package sources, mirrors, or dependency resolution are compromised, arbitrary code may run on the host.
