DeepSeek Harness 插件

dsh-netguard

Egress policy for DeepSeek Harness: a host allowlist on web_fetch and web_search enforced at connect time, audit-mode by default, with OCSF Network Activity records(英文原文)

跳到安装方式

来源信息

GitHub 仓库
CharlotteN7/dsh-netguard
最近更新
2026年8月18日
分类
安全与权限
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/CharlotteN7/dsh-netguard
插件名:dsh-netguard
作者:CharlotteN7

检查来源文件

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

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

dsh-netguard

An egress policy for DeepSeek Harness: a host allowlist on the web_fetch and web_search tools, checked at connect time, built as an out-of-repo plugin.

The harness has no network control of any kind — its sandbox governs file effects only, and web_fetch is described in-source as an SSRF primitive with private-network protection "not implemented". This package adds the part that is achievable from an ordinary mounted plugin.

📖 Full documentation

Three things to know before you install it

It ships in audit mode, where nothing is refused. Every decision is recorded and every request goes through, including the ones the policy would deny. mode: enforce is what turns records into refusals. Audit-first is deliberate — enforce-first on a dependency graph nobody can enumerate gets the control switched off in week one — but an installation left in audit mode has monitoring, not enforcement.

It is not an egress firewall. It governs those two tools and nothing else. It does not see one byte sent by bash, run_code, a terminal, an MCP server, or a delegated agent. A build script phoning home does not stop, and neither does a dependency's postinstall fetching a second stage.

It is not a containment boundary. It runs in-process at the agent's own uid. Against a confused or prompt-injected model that asks a tool to fetch a URL, it is a real control. Against a model that is deliberately exfiltrating, it is advisory — that model writes one line of run_code. The model channel itself is the dominant exfiltration path and nothing here touches it.

What it does not do, in full →

Install

dsh plugin --profile <name> add @deepseek-ai/dsh-headless@0.1.0-rc.6
dsh plugin --profile <name> add dsh-netguard
dsh --profile <name> --dump-config      # the dsh-netguard row should appear

Any harness from 0.1.0-rc.6 onwards in the 0.1.x line works: the peer ranges accept it, and CI runs the end-to-end suite against 0.1.0-rc.6 and 0.1.0-rc.7.

The composition is mandatory. ctx.web has no provider priority and no last-wins rule, so mounting this beside another fetch provider breaks web_fetch outright with WEB_PROVIDER_AMBIGUOUS. Write this into the profile's cordis.patch.yml — a patch replaces a row's whole config, so every key is restated:

# $DSH_HOME/profiles/<name>/cordis.patch.yml
- id: web
  config:
    fetchProvider: dsh-netguard
    searchProvider: deepseek-official   # whatever your profile already uses

- id: tool-web
  config:
    fetch: true                          # the base bundle ships this off
    searchTimeoutMs: 60000

# Only if your composition mounts the shipped provider; the base bundle does not.
- remove: [web-fetch-http]

- id: dsh-netguard
  config:
    mode: audit
    allow: []
    deny: []
    spoolPath: /var/log/dsh/netguard.ocsf.jsonl

Get it wrong and the mount fails loud, naming the conflicting provider and quoting the patch you need. Install from the registry or a packed tarball, not from a git spec — lib/ is a build output git does not carry.

Install and composition in full →

Configure

Every path must be absolute; a relative one resolves against the workspace, which is the directory the agent being recorded can rewrite. An empty allow list denies everything, and a deny match wins over every allow match.

- id: dsh-netguard
  config:
    mode: audit                          # or enforce
    allow: ['**.github.com', 'registry.npmjs.org:443']
    deny: ['*.internal.example']
    spoolPath: /var/log/dsh/netguard.ocsf.jsonl

Pattern grammar is Codex's: *.example.com is subdomains only, **.example.com includes the apex. An allow entry may also scope to a path — github.com/your-org/your-repo grants that path and everything under it, re-checked on every redirect hop. A pattern that could be read two ways is refused at load rather than widened.

Configuration reference → · What enforcement means →

What it records

One OCSF Network Activity (4001) record per decision, one JSON object per line, with the security_control profile declared. Verbatim: a validated hostname, port, resolved address, verdict, matched rule. Digested as HMAC-SHA256: the full URL, any search query, and any string that was supposed to be a hostname and is not.

Records carry the same correlation_uid scheme dsh-ocsf-forwarder stamps on its tool-call records — HTTP Activity (4002) for web_fetch and web_search, not the Process Activity 1007 it gives bash — so the two together answer which tool call opened this connection. Nothing is ever appended to the session log.

Record format and the privacy lane →

Reading it back

dsh-netguard report                  # everything in the spool
dsh-netguard report --since 24h
dsh-netguard report --suggest        # a ready allow: block from the hosts it observed

Read --suggest output before using it. It reports what happened, not what should be permitted, and one line in it may be the request you mounted this plugin to stop.

The CLI imports nothing from the harness, so it runs wherever the package is installed. A plugin installed into a profile puts its bin in that profile's node_modules/.bin, which is not on PATH:

"$DSH_HOME/profiles/<name>/node_modules/.bin/dsh-netguard" report

Known limitations

bash, run_code, terminals, MCP servers and delegated agents are not governed. The model channel is not governed. The spool is not rotated. The wildcard check uses a documented approximation rather than a public suffix list. Without a search.delegate, result URLs are not filtered — only the outbound query.

All known limitations →

Development

nvm use 22           # Node ^22.19.0 || >=24, and pnpm 11
pnpm install
pnpm run typecheck
pnpm run test
pnpm run test:coverage
pnpm run test:e2e    # boots a real dsh against a mock model; no API key

Coverage is gated at 100% per file: this is a security control, so an arm nothing exercises is an arm nobody has checked.

Design decisions and their rationale live in [ADR.md](ADR.md). Security policy is in [SECURITY.md](SECURITY.md).

License

MIT