wuwuzhige-sudo/dsh-remote-acces

插件Plugin ⭐ 3 MIT 社交SocialWeb 界面Web UI

One-command setup for password-protected remote access to the DeepSeek Harness (dsh) web UI — dsh privileged-methods patch, Caddy basic-auth proxy, systemd services局域网和tailscale网络无法访问完整功能dsh,我们加了一套密码验证机制,现在局域网可以访问完整版本的dsh了,官方后续应该会更新验证机制

项目介绍Project Overview

这是一个为 DSH Web UI 配置密码保护远程访问的脚本插件。它会补丁 dsh 的特权方法限制、安装带 bcrypt 认证的 Caddy 反向代理,并创建 systemd 用户服务,适合通过 Tailscale 等可信网络远程使用完整界面。注意:dsh 可执行任意主机命令,必须使用强密码,且 dsh 仍应只绑定回环地址。

This plugin sets up password-protected remote access to the DSH web UI with one command. It patches DSH's loopback-only privileged-method fence, installs Caddy with bcrypt basic auth as a reverse proxy, and creates a systemd user service. Use it when accessing the full DSH UI over a trusted network such as Tailscale. Caveat: DSH can run arbitrary host commands, so use a strong password and keep DSH bound to loopback only.

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

命令行安装CLI Install

dsh plugin --profile web add github:wuwuzhige-sudo/dsh-remote-acces

wuwuzhige-sudo/dsh-remote-acces 加入你的 DSH 配置(web profile)即可启用。

READMEREADME

dsh-remote-access

One-command setup for password-protected remote access to the DeepSeek Harness (dsh) web UI — the same production setup used by the author on their own tailnet.

dsh web binds to 127.0.0.1 only, and a hardcoded set of privileged methods (settings.*, credentials.*, agentPreset.*, llm.discoverModels, …) is loopback-only by design ("until a real authentication layer exists"). This project makes remote full-featured access practical today:

browser → TLS (Tailscale Serve / reverse proxy) → Caddy (password auth) → dsh (loopback)

What the script does

  1. Patches the dsh privileged-methods fence (one line) so trusted hosts are allowed instead of loopback-only. Idempotent, keeps a .bak backup.
  2. Installs the official Caddy (apt or direct binary download; GH_PROXY mirror variable supported for CN networks) and writes a Caddyfile with bcrypt basic auth that reverse-proxies to the loopback dsh server.
  3. Installs a systemd user service for the auth proxy (auto-start, crash-restart, journald logs).
  4. Prints the Tailscale Serve command and access URL.

Quickstart

git clone https://github.com/wuwuzhige-sudo/dsh-remote-access
cd dsh-remote-access

./scripts/setup-remote-access.sh \
  --password 'choose-a-strong-password' \
  --user dsh \
  --trusted-host myhost.tailXXXX.ts.net     # your Tailscale DNS name

# then:
sudo tailscale serve --bg 3081
systemctl --user restart dsh-web

Open https://<machine-name>.<tailnet>.ts.net — a password prompt appears, and the full dsh UI (settings, agent presets, credentials, model discovery included) works remotely.

If dsh web runs through a reverse proxy / Tailscale Serve, the browser origin is a real hostname, so the dsh server must be started with dsh web --trusted-host <hostname> (and the same value passed to the script via --trusted-host).

Options

Flag Default Meaning
--password <pw> password for the auth layer (required)
--user <name> dsh auth username
--dsh-port <port> 3080 dsh web listen port
--caddy-port <port> 3081 auth proxy listen port
--trusted-host <h> repeatable; hostnames allowed to drive dsh
--dry-run off print actions without changing anything
--skip-patch off do not touch the dsh core patch
--skip-caddy off assume caddy is already installed
GH_PROXY (env) mirror prefix for the caddy download, e.g. https://ghfast.top/

Why not a plugin?

Two of the three moving parts cannot live inside the dsh plugin system:

  • Caddy is a separate process (a reverse proxy) — dsh plugins only run inside the dsh process.
  • The privileged-methods fence is hardcoded in dsh-client-connection (a module-private closure); a plugin cannot bypass it from the outside, and the webserver route registry does not allow intercepting /api ahead of the built-in route.

The --trusted-host flag itself is official dsh functionality. This script simply assembles the pieces.

Security

⚠️ The dsh web UI can execute arbitrary commands on the host. Anyone with the password can drive it.

  • The dsh server must stay bound to loopback — the Caddy proxy is the only public entry.
  • The password is stored as a bcrypt hash only (in ~/.local/share/dsh-remote-access/Caddyfile).
  • Use a strong, unique password. Over Tailscale the traffic is encrypted end-to-end and constrained to your tailnet.
  • This is a stopgap: the dsh project plans a real authentication layer. When it ships, drop the patch + proxy and use the official auth.

Uninstall

systemctl --user disable --now dsh-caddy
sudo tailscale serve --https 443 off
rm -f ~/.config/systemd/user/dsh-caddy.service ~/.local/share/dsh-remote-access/Caddyfile
# restore the dsh patch (see the .bak path printed during setup)
mv <dsh-client-connection>/lib/index.js.bak <dsh-client-connection>/lib/index.js

License

MIT

上一个 Prev dsh-plugin-sidebar 下一个 Next dsh-snapmarketing