os.system() or os exec-family call
High
- Category
- Dangerous Code Execution
- Content
interactive_path = skill_dir / "interactive.py" if interactive_path.exists(): os.system(f"python {interactive_path}") else: print("❌ 交互式模块不存在") return- Confidence
- 97% confidence
- Finding
- os.system(f"python {interactive_path}")
