subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
print_info("Installing requests...") try: subprocess.run([ sys.executable, "-m", "pip", "install", "requests", "--break-system-packages" ], check=True, capture_output=True)- Confidence
- 85% confidence
- Finding
- subprocess.run([ sys.executable, "-m", "pip", "install", "requests", "--break-system-packages" ], check=True, capture_output=True)
