-
Notifications
You must be signed in to change notification settings - Fork 1
fix: Security hardening, reliable daemon stop, and dashboard UX overhaul #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 15 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
6622201
fix(daemon): create daemon.lock with 0600 perms + Windows ACL, sanitiβ¦
ARHAEEM 1724975
fix(auth): deliver login credentials over fork IPC instead of child env
ARHAEEM d22fff0
fix(ci): pin vsce/ovsx exactly and validate registry version replies
ARHAEEM e631de8
fix(build): refuse symlinks escaping workspace node_modules in VSIX dβ¦
ARHAEEM 0325a80
fix(mcp): fail closed to read-only on unknown tool profile
ARHAEEM d8fb659
fix(daemon): timing-safe bearer comparison, redact token in daemon stβ¦
ARHAEEM 1ee41e6
docs: changelog entry for security hardening fixes
ARHAEEM 5eafc61
fix(build): canonicalize node_modules allowlist root in symlink guard
ARHAEEM 3a27ffb
fix(daemon): make dashboard Stop reliable β verify shutdown, reclaim β¦
ARHAEEM 26a8156
fix(webview): UI/UX hardening β action feedback, state sync, theming,β¦
ARHAEEM d72705f
docs: changelog for daemon stop fix + webview UI/UX hardening
ARHAEEM 95c1ea2
fix(webview): daemon controls use daemon-specific pending state; watcβ¦
ARHAEEM 0f3d485
fix(webview): add hostname field for Cloudflare Named Tunnel setup
ARHAEEM d3e1dc9
fix(webview): dead-end sweep β ngrok token update path, prompt editorβ¦
ARHAEEM 40eca03
feat(webview): show configured named-tunnel hostname; prompt edits waβ¦
ARHAEEM 4bfb9d7
fix(tunnel): make named-tunnel hostname changes take effect; use pnpmβ¦
ARHAEEM 9624aab
fix(security): remove unsanitized icacls duplicate; require proven idβ¦
ARHAEEM a1a56cf
fix(daemon): require uuid proof for ALL kill escalation; restartDaemoβ¦
ARHAEEM 065000f
fix(lsp): make published LSP actually runnable; committed bin shim kiβ¦
ARHAEEM File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked the npm/npx CLI semantics (
npx --help/npm exec --help) and the options list only--package,--call, and workspace flags;--no-installis not a supported install-prevention flag for this runner, and a quicknpx --no-install <missing-bin>still attempted a registry fetch. Since this release job runs thesenpx --no-installcommands with publishing tokens in scope, a missing local binary can still fall back to downloading a package instead of failing closed; use a local-only invocation such aspnpm exec vsce/pnpm exec ovsxor another verified offline mechanism.Useful? React with πΒ / π.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed and fixed in 4bfb9d7. Reproduced locally on npm 11:
npx --no-install <missing-bin>still hit the registry (the flag isn't an install-prevention option on npm 7+). Replaced all four call sites withpnpm exec vsce/pnpm exec ovsxβ verified pnpm exec resolves the workspace-root pinned binaries from package subdirs (thecd packages/extensionstep included) and fails closed when the binary is absent.