subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
def fetch_with_browser(url): """使用浏览器工具获取页面(SPA 支持)""" try: result = subprocess.run( ["openclaw", "browser", "fetch", "--url", url, "--wait", "2000"], capture_output=True, text=True,- Confidence
- 91% confidence
- Finding
- result = subprocess.run( ["openclaw", "browser", "fetch", "--url", url, "--wait", "2000"], capture_output=True, text=True, timeout=30, )
