subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
usage_output=str(usage_path) if usage_path else "", ) try: subprocess.run(shlex.split(command), check=True) except subprocess.CalledProcessError as exc: raise SystemExit( f"Frame editor failed on frame {frame.name} with exit code {exc.returncode}: {command}"- Confidence
- 93% confidence
- Finding
- subprocess.run(shlex.split(command), check=True)
