exec() call detected
High
- Category
- Dangerous Code Execution
- Content
v3_script = Path(__file__).parent / "fetch_news_v3.py" if v3_script.exists(): with open(v3_script, "r", encoding="utf-8") as f: exec(f.read()) else: print("错误:fetch_news_v3.py 不存在") sys.exit(1)- Confidence
- 99% confidence
- Finding
- exec(f.read())
