subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
dry_run_output("clawhub", command) return {"dry_run": True, "command": command} result = subprocess.run( command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,- Confidence
- 90% confidence
- Finding
- result = subprocess.run( command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, check=False, )
