ateen18/dsh-plugin-security-review

Plugin插件 Native原生 ⭐ 4 Approval & Security审批与安全

A security review plugin for DeepSeek Harness (dsh) plugins. Once installed, every other plugin is statically reviewed before it is installed or loaded: dangerous code, vulnerabilities, and supply-chain risks are analyzed, a review report is produced, and an install recommendation is given. At runtime it keeps auditing the installed

catalog descriptioncatalog 简介 / catalog description:Security review gate for DeepSeek Harness (dsh) plugins: static pre-install vetting of malicious code, vulnerabilities and supply-chain risks (with deobfuscation decoding), runtime audit, optional tool-call guard, and a one-click web review/install/uninstall panel.

Project Overview项目介绍

dsh-plugin-security-review is a security gate for DeepSeek Harness plugins. It provides three layers: pre-install static review of source for dangerous code, vulnerabilities, and supply-chain risks with deobfuscation decoding; runtime auditing that disables dangerous plugins via managed cordis patches; and in-session tools plus a web panel for reviewing, installing, and uninstalling plugins. Use it when vetting untrusted plugin sources or enforcing centralized plugin risk policy. Note: static analysis cannot cover native binaries, runtime-downloaded code, or heavily obfuscated payloads, so block verdicts indicate strong risk signals, not proven malice.

dsh-plugin-security-review 是 DeepSeek Harness 的安全审查插件,提供三层防护:安装前静态审查危险代码、漏洞与供应链风险(含反混淆解码),运行时持续审计并自动禁用危险插件,会话内支持工具调用审查与一键网页面板管理。在安装来源不可信的插件或需要集中管控插件风险时使用。注意:静态分析无法覆盖原生二进制、运行时下载代码及重度混淆载荷,阻断仅代表存在强风险信号,并非恶意定论;首次启动时早于本插件加载的插件可能有短暂运行窗口,下次启动由托管 patch 块阻止。

Or use CLI install (for developers)或使用命令行安装(适合开发者)

CLI Install命令行安装

dsh-safe-plugin add dsh-plugin-security-review

ateen18/dsh-plugin-security-review 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

dsh-plugin-security-review

Awesome DSH Plugin

Security review gate for dsh plugins — static pre-install vetting of malicious code, vulnerabilities and supply-chain risks (with deobfuscation decoding), runtime audit, optional tool-call guard, and a one-click web review/install/uninstall panel.

A security review plugin for DeepSeek Harness (dsh) plugins. Once installed, every other plugin is statically reviewed before it is installed or loaded: dangerous code, vulnerabilities, and supply-chain risks are analyzed, a review report is produced, and an install recommendation is given. At runtime it keeps auditing the installed roster and disables dangerous plugins.

See README.zh.md for the Chinese quick start.

Full user guides:

Three layers

Layer When What it does
1. Install gate before install (dsh-safe-plugin add) downloads source without running any install scripts, analyzes it, prints the report; block refuses the install, warn needs confirmation, pass forwards to dsh plugin add --ignore-scripts
2. Runtime gate after dsh boots audits every out-of-tree plugin in the profile (cached); blocked plugins are disabled via loader.update(id,{disabled:true}) and written into a managed disabled: true block in the profile's cordis.patch.yml, so their code is never imported on the next boot
3. In-session tools during sessions security_review / security_review_status tools review any plugin/source directory and read historical reports

Install

dsh-safe-plugin add dsh-plugin-security-review
# or: dsh plugin --profile web add dsh-plugin-security-review

The package declares dsh.bundle, so the dsh plugin manager joins it into dsh.profile.bundles automatically.

Review and install other plugins

dsh-safe-plugin add dsh-plugin-foo       # review + install
dsh-safe-plugin add ./local-plugin-dir
dsh-safe-plugin add https://github.com/me/plugin.git
dsh-safe-plugin review dsh-plugin-foo   # review only
dsh-safe-plugin review . --ignore test/fixtures   # skip fixtures dirs
dsh-safe-plugin list                    # historical reports
dsh-safe-plugin verify                  # re-review installed plugins

Reports

  • Score (0-100), verdict pass / warn / block / audit, per-finding detail (severity, category, file:line, snippet, recommendation) and an install recommendation.
  • Persisted under $DSH_HOME/security-review/: reports/latest/<name>.md (markdown), reports/history/*.json, index.json.
  • The web settings UI gains a security-review section (policy, auto-disable switch, allowlist).

Known limitations

  1. Static analysis cannot cover native binaries, runtime-downloaded code, or heavily obfuscated payloads; block means strong risk signals, not proof of malice.
  2. The runtime gate deterministically blocks plugin imports that happen after this plugin applies; plugins that start earlier in the same boot batch load for a few milliseconds before the boot audit disables them, and the managed patch block keeps them from loading on the next boot. Use dsh-safe-plugin add for deterministic pre-install blocking.
  3. Blocking a plugin that provides services other rows inject fails boot loudly with the missing service named — that is dsh's fail-loud contract.
  4. Transitive dependencies are checked by name heuristics only (no full source scan of the whole dependency tree).
  5. A review-engine failure degrades to warn (fail-open) so the reviewer itself can never brick dsh; re-check with dsh-safe-plugin verify.

Development

npm test      # analyzer unit tests (no dsh needed; run from this dir)

License: MIT

上一个 Prev dsh-plugin-registry 下一个 Next dsh-webUI-Glass-Theme