subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
requests.get(f"{API_BASE}/api/config", timeout=2) except: # 启动服务 subprocess.Popen( ["python3", str(PROJECT_DIR / "backend" / "app.py")], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL,- Confidence
- 77% confidence
- Finding
- subprocess.Popen( ["python3", str(PROJECT_DIR / "backend" / "app.py")], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, )
