os.system() or os exec-family call
High
- Category
- Dangerous Code Execution
- Content
if not script_path.exists(): return f"❌ 脚本不存在:{script_path}" result = os.popen(f'python3 {script_path}').read() if not result: return "❌ 暂无数据"- Confidence
- 92% confidence
- Finding
- result = os.popen(f'python3 {script_path}').read()
