subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
args = command if self._shell else shlex.split(command, posix=False) start = time.monotonic() try: result = subprocess.run( args, shell=self._shell, cwd=cwd,- Confidence
- 91% confidence
- Finding
- result = subprocess.run( args, shell=self._shell, cwd=cwd, capture_output=True, text=True, t
