subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
"-of", "default=noprint_wrappers=1:nokey=1", str(file_path) ] result = subprocess.run(cmd, capture_output=True, text=True, check=True) return float(result.stdout.strip()) except (subprocess.CalledProcessError, FileNotFoundError, ValueError): pass- Confidence
- 70% confidence
- Finding
- subprocess module calls execute external commands. Without careful input validation, this enables command injection.
