subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
try: print("正在运行批处理脚本...") result = subprocess.run( [str(temp_script)], shell=True, capture_output=True,- Confidence
- 95% confidence
- Finding
- result = subprocess.run( [str(temp_script)], shell=True, capture_output=True, text=True, encoding='utf-8' )
