os.system() or os exec-family call
High
- Category
- Dangerous Code Execution
- Content
print(f" $ {cmd}") print() ret = os.system(cmd) if ret != 0: fail("依赖安装失败,请检查网络连接") info("可以手动运行: " + cmd)- Confidence
- 91% confidence
- Finding
- ret = os.system(cmd)
Security checks across static analysis, malware telemetry, and agentic risk
This Laozi Q&A skill is mostly purpose-aligned, but it under-discloses external AI data flows, stores credentials in plaintext, exposes logs through the web UI, and performs broad setup-time environment changes.
Review before installing. Use a virtual environment, avoid entering sensitive prompts, assume OpenAI/Hugging Face modes may send questions and retrieved text to third parties, do not expose the Gradio UI on an untrusted network, protect or avoid the .env file, and disable or restrict log viewing if multiple users can access the app.
print(f" $ {cmd}")
print()
ret = os.system(cmd)
if ret != 0:
fail("依赖安装失败,请检查网络连接")
info("可以手动运行: " + cmd)No static analysis findings were reported for this release.
VirusTotal findings are pending for this skill version.