subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
try: # Download using curl result = subprocess.run([ "curl", "-s", "--max-time", "60", "-o", tmp_path, url- Confidence
- 96% confidence
- Finding
- result = subprocess.run([ "curl", "-s", "--max-time", "60", "-o", tmp_path, url ], capture_output=True, timeout=90)
