subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
def run_mcporter(command): """执行 mcporter 命令""" result = subprocess.run( command, shell=True, capture_output=True,- Confidence
- 99% confidence
- Finding
- result = subprocess.run( command, shell=True, capture_output=True, text=True, timeout=60 )
