subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
for name, cmd in checks: try: subprocess.run(cmd, shell=True, check=True, capture_output=True) console.print(f" [green]✔[/green] {name}") except: console.print(f" [red]✘[/red] {name} - NOT FOUND")- Confidence
- 97% confidence
- Finding
- subprocess.run(cmd, shell=True, check=True, capture_output=True)
