subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
cmd = [sys.executable, str(tool)] if extra: cmd.extend(extra) subprocess.check_call(cmd, cwd=stack) def main() -> int:- Confidence
- 92% confidence
- Finding
- subprocess.check_call(cmd, cwd=stack)
