chore(deps): update dependency @tauri-apps/cli to v1.5.6 [security] #92
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.2.3
->1.5.6
GitHub Vulnerability Alerts
CVE-2023-46115
Impact
This advisory is not describing a vulnerability in the Tauri code base itself but a commonly used misconfiguration which could lead to leaking of the private key and updater key password into bundled Tauri applications using the Vite frontend in a specific configuration.
The Tauri documentation used an insecure example configuration in the Vite guide to showcase how to use Tauri together with Vite.
Copying the following snippet
envPrefix: ['VITE_', 'TAURI_'],
from this guide into thevite.config.ts
of a Tauri project possibly leads to bundling theTAURI_PRIVATE_KEY
andTAURI_KEY_PASSWORD
into the Vite frontend code and therefore leaking this value to the debug built of a Tauri application.The value is automatically bundled into debug builds but for production builds it is not embedded, as long as it is not directly referenced in the frontend code. Vite statically replaces these values in production builds. This reduces the amount of affected applications to a very small amount of affected applications.
To verify if you are affected you can search for the private key value or the
TAURI_PRIVATE_KEY
variable inside the release build frontend assets (dist/
).Using only the
envPrefix: ['VITE_'],
or any other framework than Vite means you are not impacted by this advisory.Patches
The documentation has been patched but as the root cause is not in Tauri itself the issue is not fixed by updating Tauri.
The
vite.config.ts
configuration of the project needs to be adapted.We recommend rotating your updater private key if you are affected by this (requires Tauri CLI >=1.5.5). After updating the envPrefix configuration, generate a new private key with
tauri signer generate
, saving the new private key and updating the updater'spubkey
value ontauri.conf.json
with the new public key. To update your existing application, the next application build must be signed with the older private key in order to be accepted by the existing application.Workarounds
The
envPrefix: ['VITE_'],
should be used and the desiredTAURI
variables manually added.Respective these variables could be added
TAURI_PLATFORM
,TAURI_ARCH
,TAURI_FAMILY
,TAURI_PLATFORM_VERSION
,TAURI_PLATFORM_TYPE
andTAURI_DEBUG
without leaking sensitive information.We urge affected users to implement the workaround as the
1.x
branch will not receive a general prevention fix as it would break systems.References
The issue was originally disclosed in our discord here.
The affected guide is https://tauri.app/v1/guides/getting-started/setup/vite/.
Release Notes
tauri-apps/tauri (@tauri-apps/cli)
v1.5.6
: @tauri-apps/cli v1.5.6Compare Source
[1.5.6]
Bug Fixes
5264e41d
(#8082) Downgradedrust-minisign
to0.7.3
to fix signing updater bundles with empty passwords.Dependencies
[email protected]
v1.5.5
: @tauri-apps/cli v1.5.5Compare Source
[1.5.5]
Enhancements
9bead42d
(#8059) Allow rotating the updater private key.Bug Fixes
be8e5aa3
(#8042) Fixes duplicated newlines on command outputs.Dependencies
[email protected]
v1.5.4
: tauri v1.5.4Compare Source
Updating crates.io index
Cargo Audit
[1.5.4]
Enhancements
3c371aa8
(#8228) Addedtest::get_ipc_response
.Bug Fixes
50a3d170
(#8408) On Windows, fixopen
dialogdefaultPath
, when invoked from JS, not working if the path uses forward slash (/
)645e1dcc
(#8404) Fix NSIS updater failing to launch when usingbasicUi
mode.Dependencies
[email protected]
[email protected]
[email protected]
[email protected]
Cargo Publish
v1.5.2
: @tauri-apps/api v1.5.2Compare Source
Yarn Audit
[1.5.2]
Bug Fixes
50462702
(#8267) Add top-levelmain
,module
andtypes
fields inpackage.json
to be compliant with typescripts's"moduleResolution": "node"
14544e4b
(#8219) Avoid crashing inclearMocks
Yarn Publish
v1.5.1
: tauri-build v1.5.1Compare Source
Updating crates.io index
Cargo Audit
[1.5.1]
Dependencies
[email protected]
[email protected]
Cargo Publish
v1.5.0
: tauri-build v1.5.0Compare Source
Updating crates.io index
Cargo Audit
[1.5.0]
What's Changed
d1e09da0
(#7918) Bump to 1.5 due to tauri-utils dependency bump.Cargo Publish
v1.4.0
: @tauri-apps/cli v1.4.0Compare Source
[1.4.0]
New Features
0ddbb3a1
(#7015) Provide prebuilt CLIs for Windows ARM64 targets.35cd751a
(#5176) Added thedesktop_template
option ontauri.conf.json > tauri > bundle > deb
.6c5ade08
(#4537) Addedtauri completions
to generate shell completions scripts.e092f799
(#6887) Addnsis > template
option to specify custom NSIS installer template.Enhancements
d75c1b82
(#7181) Print a useful error whenupdater
bundle target is specified without an updater-enabled target.52474e47
(#7141) Enhance injection of Cargo features.2659ca1a
(#6900) Addrustls
as default Cargo feature.Bug Fixes
3cb7a3e6
(#6997) Fix built-in devserver adding hot-reload code to non-html files.fb7ef8da
(#6667) Fix nodejs binary regex when0
is in the version name, for examplenode-20
1253bbf7
(#7013) Fixes Cargo.toml feature rewriting.v1.3.1
Compare Source
v1.3.0
: tauri-build v1.3.0Compare Source
Updating crates.io index
Cargo Audit
[1.3.0]
nsis
bundles on non-Windows platforms.WindowsAttributes::app_manifest
to specify the application manifest on Windows.tauri
andtauri-build
dependencies and disables manifest rewrites accordingly.winnow
crate to 0.4.1 to keep the 1.60 MSRV.Cargo Publish
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 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 has been generated by Mend Renovate. View repository job log here.