eval() call detected
High
- Category
- Dangerous Code Execution
- Content
# 尝试提取 JSON(可能在 markdown 代码块中) json_match = re.search(r'\{[\s\S]*\}', response) if json_match: result = eval(json_match.group()) # 安全的简单解析 else: result = eval(response) # 直接解析 except Exception:- Confidence
- 99% confidence
- Finding
- result = eval(json_match.group()) # 安全的简单解析
