DeepSeek Harness 插件

dsh-plugin-security-audit

DeepSeek Harness plugin: run a live security health check on the deployment (credential file permissions, process-env secrets, permission/approval mode, telemetry, anonymous id, LAN exposure, sandbox(英文原文)

跳到安装方式

来源信息

GitHub 仓库
truelove-dreamer/dsh-plugin-security-audit
最近更新
2026年8月15日
分类
插件开发工具
GitHub stars
0
载体类型
plugin
目录证据
上游声明已找到 dsh.bundle
证据路径
package.json#dsh.bundle
核对版本
0.1.0-rc.8
上游核对日期
2026-08-20

该证据由上游目录提供。本站没有安装、运行或安全审核这个插件。

安装

默认先复制一段 Prompt,让 Agent 读 GitHub 仓库和源码;需要自己装时再切到命令。

复制这段 Prompt,发给 DSH、Codex 或其他 Agent,让它先读 GitHub 仓库和源码。

请先不要安装或执行任何命令。阅读这个插件的 GitHub 仓库、README 和关键源码,然后用清楚、直接的方式回答以下问题,帮助我判断它是否适合我的需求:

1. 这个插件是什么,解决什么问题;
2. 适合哪些用户和典型使用场景;
3. 安装后如何使用,并给出一个最小使用示例;
4. 有哪些已知限制,以及隐私、安全、兼容性或维护风险;
5. 给出“推荐 / 有条件推荐 / 不推荐”的明确建议和理由。

请区分仓库明确说明、根据源码推断和未知信息。证据不足时请明确说明,不要猜测或照抄 README。

GitHub:https://github.com/truelove-dreamer/dsh-plugin-security-audit
插件名:dsh-plugin-security-audit
作者:truelove-dreamer

检查来源文件

安装前先看这个插件目录里的 README 和其他文件。

文件资源管理器2 个文件
README.md来源说明 · 只读预览

dsh-plugin-security-audit

DeepSeek Harness 插件:对当前部署运行实时安全体检,输出 PASS/WARN/FAIL 报告。

背景

我们审计 DeepSeek Harness 0.1.0-rc.6 时发现了 2 条 critical + 17 条 major(凭据保密边界、Windows 沙箱语义、审批可被 LAN 旁路、glob/grep 绕过沙箱、匿名 ID 外发等)。这个插件把那些发现变成可重复运行的健康检查:对任意部署跑一遍,逐项给出严重级、详情,以及对应的上游讨论帖链接。

检查项

id检查对应发现
credential_file_permissions凭据文件 0600(POSIX)/ACL 继承(Windows,SB3)讨论 962
process_env_secrets进程环境中的 API key(C2:/proc/<pid>/environ 可读)讨论 962
permission_mode / approval_policy权限模式与审批策略(danger-full-access → never)
telemetry_mode遥测模式(FULL 原始导出无脱敏,L3)讨论 962
anonymous_id.anonymous-user-id 存在性(telemetry 关闭仍外发,M14)讨论 952
lan_exposurewebserver 绑定(0.0.0.0 → critical;trustedHosts → warn,W1/W3)讨论 950
sandbox_backend当前平台的沙箱后端是否挂载

每条检查还附 recommendations(安装 search-gate / credential-guard、收紧 ACL、scrub 环境变量等可执行建议)。

安装

dsh plugin --profile web add dsh-plugin-security-audit

挂载(profile cordis.patch.yml 或 agent preset):

- id: security-audit
  name: dsh-plugin-security-audit

使用

  • 模型工具security_audit(无参数)
  • 斜杠命令/security-audit

示例输出:

# Security audit — FAIL (3/8)
critical=1 warn=2 info=0 ok=5
[CRITICAL] credential_file_permissions: "/home/alice/.dsh/.credentials.yaml" is group/other-readable (mode 644)...
         ref: https://github.com/deepseek-ai/deepseek-harness/discussions/962
[WARN] process_env_secrets: API keys are present in the harness process environment (DEEPSEEK_API_KEY)...
...
Recommendations:
  1. Mount dsh-plugin-search-gate to stop glob/grep reading outside the workspace (discussion 951).
  2. Mount dsh-plugin-credential-guard to deny model reads of credential stores and .env (mitigates discussion 962).
  ...

设计说明

  • 检查逻辑全部在 lib/checks.js 的纯函数 runAudit(facts) 里,插件只负责从 ctx + node 收集 facts 快照——可单测、确定性npm test)。
  • 报告把每条发现映射到已发布的上游讨论帖,方便用户与维护者跟进。
  • 不修改任何配置;纯只读体检。

边界

  • 检测不了"是否已挂载 search-gate / credential-guard"(guard 注册不可枚举),只在建议里提示安装。
  • 检查基于进程可见的事实(env、文件、ctx 服务);不含跨进程/内核级探测。