subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
@staticmethod def _health_check(path: Path) -> bool: try: result = subprocess.run( [str(path), "--help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE,- Confidence
- 84% confidence
- Finding
- result = subprocess.run( [str(path), "--help"], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, t
