A LAN password gate for the Web UI: phones and tablets on the same network log in with a shared key and see the same sessions in real time, with a built-in randomUUID polyfill for plain-HTTP origins.
Install
# from npm (prebuilt)
dsh plugin --profile web add dsh-lan-pass
# from GitHub (first run asks for allowBuilds approval — follow the hint, retry)
dsh plugin --profile web add github:x2802490130-prog/dsh-lan-pass
Any plugin you install runs third-party code with your own permissions — it can read your files, use your credentials, and reach the network, and tool approvals don’t sandbox it. GitHub-sourced plugins also run build scripts at install time. Only install sources you trust, and pin a commit (github:owner/repo#sha).
README
DSH 局域网密码门禁:让手机/平板在同一局域网内通过密码访问本机的 DSH Web UI(http://电脑IP:3080)。
- 手机打开地址 → 输入访问密钥 → 进入完整 UI,会话/输入输出与电脑实时同步(同一后端,天然同屏)
- 本机(localhost/127.0.0.1)访问永不拦截,无感知
- 内置
crypto.randomUUIDpolyfill(HTTP 非安全上下文必需,替代 dsh-web-lan-access 的作用) - 登录页移动端自适应
安装
```bash dsh plugin --profile web add link:/path/to/lan-pass ```
配置(密码)
默认密钥:deepseekyyds —— 装完即用,无需任何配置。
⚠️ 默认密钥是公开的,等于没上锁!请尽快改成你自己的:
- 环境变量
DSH_LAN_PASSWORD,或 - 编辑
%USERPROFILE%\.dsh\.credentials.yaml,加一行:
```yaml DSH_LAN_PASSWORD: 你的新密钥 ```
- 重启 dsh 生效。使用默认值时启动日志会打印警告。
启动(关键)
```bash dsh web --host 0.0.0.0 ```
并放行防火墙(管理员 CMD):
``` netsh advfirewall firewall add rule name="DSH Web 3080" dir=in action=allow protocol=TCP localport=3080 ```
手机浏览器打开 http://<电脑局域网IP>:3080(ipconfig 查看 IPv4),输密钥即可。
安全边界(如实说明)
- 门禁校验在服务端完成:Cookie 为 HMAC 令牌,HttpOnly
- 但 webServer 无全局中间件,未认证设备理论上仍可直呼 /api/ 接口*(进不了 UI)。仅建议在可信家庭局域网使用;跨不可信网络请改用反向代理方案(如 dsh-mobile-gate + HTTPS)
- 密钥走明文 HTTP,别用重要密码,建议 8 位以上随机串
License
MIT
Links
More in this category
zhu1090093659/dsh-web-ui#packages/dsh-web-ui-all★ 2028
Plugin and skin collection for the DSH Web UI: task board, Git graph, right-side panel, remote mobile UI, pet, live token stats, and a skin center.
ccch1mneyyy/dsh-TUI★ 940
Claude Code-style full-screen terminal UI: pixel-whale header, live status line, and streaming thought expansion.
omdsh-dev/DSH-better-sidebar★ 816
Full sidebar workbench with file rendering and editing, terminal, Git, and subagents; third-party plugins can register new tabs.
omdsh-dev/dsh-at-file★ 143
Codex-style `@file` mentions: search workspace files in the composer and attach their contents to prompts.
huiliyi37/dsh-tianshu-tui★ 137
A terminal UI (TUI) for DeepSeek Harness.
Nagi-ovo/dsh-visualize★ 86
In-conversation generative UI: the model renders interactive HTML cards into the chat stream, with streaming preview and sandboxed rendering.