subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
self.rate_limiter.acquire() use_shell = isinstance(task.command, str) proc = subprocess.run( task.command if use_shell else task.command.split(), capture_output=True, text=True,- Confidence
- 99% confidence
- Finding
- proc = subprocess.run( task.command if use_shell else task.command.split(), capture_output=True, text=True,
