Update devDependency @nuxt/devtools to v3 [SECURITY] - #178
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
❌ Deploy Preview for vintl-nuxt failed. Why did it fail? →
|
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
November 11, 2025 02:29
09829f9 to
be2f07b
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
November 18, 2025 12:06
be2f07b to
3891118
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
December 3, 2025 18:57
3891118 to
67e90aa
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
December 31, 2025 13:52
67e90aa to
e718c4b
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
January 8, 2026 18:53
e718c4b to
54d95f0
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
January 23, 2026 23:56
1580275 to
4fbc5ad
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
February 2, 2026 20:30
4fbc5ad to
f66be0b
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
February 17, 2026 16:41
2bcc612 to
8167c04
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
March 5, 2026 16:04
8167c04 to
25ed460
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
March 13, 2026 11:03
25ed460 to
d28c77e
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
April 8, 2026 16:53
8ec0634 to
b6ebb68
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
May 1, 2026 08:41
b6ebb68 to
74cd261
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
May 18, 2026 10:42
73e1182 to
c0e8b36
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
June 1, 2026 21:04
1725d10 to
3f9f382
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
June 11, 2026 15:39
3f9f382 to
c80018f
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
July 16, 2026 14:58
04021b3 to
df5543f
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
July 24, 2026 15:13
c3e5716 to
f1c71b5
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
July 30, 2026 16:47
f1c71b5 to
6098587
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
2 times, most recently
from
August 14, 2026 20:47
c759831 to
3d4ddb4
Compare
renovate
Bot
force-pushed
the
renovate/npm-nuxt-devtools-vulnerability
branch
from
August 26, 2026 15:05
3d4ddb4 to
34329a2
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR contains the following updates:
^1.6.0→^3.0.0Nuxt DevTools vulnerable to cross-site scripting (XSS)
CVE-2025-52662 / GHSA-xmq3-q5pm-rp26
More information
Details
A vulnerability in Nuxt DevTools has been fixed in version 2.6.4*. This issue may have allowed Nuxt auth token extraction via XSS under certain configurations. All users are encouraged to upgrade.
Severity
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:H/A:NReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Unauthenticated Nuxt DevTools RPC allows arbitrary command execution on the developer's host
CVE-2026-71319 / GHSA-279x-mwfv-vcqv
More information
Details
Impact
Nuxt DevTools (development mode only) exposes a bidirectional RPC channel over the Vite HMR WebSocket via the
nuxt:devtools:rpcplugin. On affected versions the channel has no authentication: any client that can reach the Vite HMR endpoint (ws://<host>:<port>/, subprotocolvite-hmr) can call RPC methods, with no token, handshake, or origin check before the channel is established. TheupdateOptions(),clearOptions(), andopenInEditor()methods do not enforce theensureDevAuthTokencheck that the other mutating methods use.openInEditor()reads the persistedbehavior.openInEditorvalue and passes it to thelaunch-editorpackage, which spawns it as a child process. That value is settable through the equally unauthenticatedupdateOptions(). An attacker who can reach the HMR port can therefore chainupdateOptions('behavior', { openInEditor: '<command>' })thenopenInEditor('<any-existing-file>')to execute an arbitrary program on the developer's machine.The HMR port is reachable by a process on the same host, by any peer on the LAN when the dev server is bound with
nuxi dev --host, or by a malicious website the developer visits while the dev server is running (a browser can open the HMR WebSocket cross-origin). Impact is limited to development environments; production builds do not run DevTools.Patches
Fixed in
@nuxt/devtools@3.3.1. Becausenuxtdepends on@nuxt/devtoolsthrough a^3.xrange, updating is a lockfile refresh / reinstall; nonuxtrelease is required.Workarounds
@nuxt/devtoolsto a patched version.nuxi dev --host) on an untrusted network.devtools: { enabled: false }innuxt.config.References
launch-editor: https://www.npmjs.com/package/launch-editorSeverity
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:HReferences
This data is provided by the GitHub Advisory Database (CC-BY 4.0).
Release Notes
nuxt/devtools (@nuxt/devtools)
v3.3.1Compare Source
No significant changes
View changes on GitHub
v3.2.4Compare Source
🚀 Features
ua-parser-modern- by @antfu (114aa)🐞 Bug Fixes
View changes on GitHub
v3.2.3Compare Source
Bug Fixes
v3.2.2Compare Source
Bug Fixes
Features
promptswith@clack/prompts(#935) (1aa3d2d)v3.2.1Compare Source
Bug Fixes
v3.2.0Compare Source
Bug Fixes
devtools:initializedhook after all modules run (#919) (3662836)Features
3.1.1 (2025-11-25)
Bug Fixes
Features
v3.1.1Compare Source
Bug Fixes
Features
v3.1.0Compare Source
Features
3.0.1 (2025-10-31)
Bug Fixes
Features
v3.0.1Compare Source
Bug Fixes
Features
v3.0.0Compare Source
v2.7.0Compare Source
🐞 Bug Fixes
View changes on GitHub
v2.6.5Compare Source
Bug Fixes
v2.6.4Compare Source
Bug Fixes
textContentinstead ofinnerHtmlfor auth pagechore: update lock (7cadbbe)v2.6.3Compare Source
v2.6.2Compare Source
Bug Fixes
v2.6.1Compare Source
Bug Fixes
@nuxt/schema(#872) (62443ec)v2.6.0Compare Source
Bug Fixes
Features
v2.5.0Compare Source
v2.4.1Compare Source
Bug Fixes
Features
v2.4.0Compare Source
Bug Fixes
useDevtoolsClientreturn type (#845) (5ce9b47)[@unocss-include](https://redirect.github.com/unocss-include)magic string in NButton (#852) (f18de78)2.3.2 (2025-03-26)
Bug Fixes
vite-plugin-vue-tracer(0c1740c)2.3.1 (2025-03-20)
Bug Fixes
execato be compatible with Node v18, fix #821 (f15c7dc)v2.3.2Compare Source
Bug Fixes
vite-plugin-vue-tracer(0c1740c)v2.3.1Compare Source
Bug Fixes
execato be compatible with Node v18, fix #821 (f15c7dc)v2.3.0Compare Source
Features
2.2.1 (2025-03-05)
Bug Fixes
v2.2.1Compare Source
Bug Fixes
v2.2.0Compare Source
Features
vite-plugin-vue-tracer(#803) (faa08d3)2.1.3 (2025-03-03)
2.1.2 (2025-03-03)
2.1.1 (2025-02-28)
Bug Fixes
Features
v2.1.3Compare Source
v2.1.1Compare Source
Bug Fixes
Features
v2.1.0Compare Source
Bug Fixes
Features
__NUXT_INSPECTOR__(9f3c8bf)vueDevTools(3e5251c)v2.0.0Compare Source
Features
v1.7.0Compare Source
Features
1.6.4 (2024-12-12)
Bug Fixes
@vue/devtools(8485fcb)1.6.3 (2024-12-03)
Bug Fixes
vite-plugin-inspectversion (a399082)1.6.2 (2024-12-03)
Bug Fixes
Features
vite-plugin-inspectfor both Vite 5 and 6 (#757) (cfcbc24)1.6.1 (2024-11-20)
Bug Fixes
Features
v1.6.4Compare Source
Bug Fixes
@vue/devtools(8485fcb)v1.6.3Compare Source
Bug Fixes
vite-plugin-inspectversion (a399082)v1.6.2Compare Source
Bug Fixes
Features
vite-plugin-inspectfor both Vite 5 and 6 (#757) (cfcbc24)v1.6.1Compare Source
Bug Fixes
Features
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.