subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
if not launch_steps: raise RuntimeError("No launch command is defined for this candidate.") expanded = [expand_env(part) for part in launch_steps] process = subprocess.Popen( expanded, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,- Confidence
- 95% confidence
- Finding
- process = subprocess.Popen( expanded, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, start_new_session=True, )
