diff --git a/advisories/github-reviewed/2023/10/GHSA-2rcp-jvr4-r259/GHSA-2rcp-jvr4-r259.json b/advisories/github-reviewed/2023/10/GHSA-2rcp-jvr4-r259/GHSA-2rcp-jvr4-r259.json new file mode 100644 index 00000000000..0c1e5678d92 --- /dev/null +++ b/advisories/github-reviewed/2023/10/GHSA-2rcp-jvr4-r259/GHSA-2rcp-jvr4-r259.json @@ -0,0 +1,103 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-2rcp-jvr4-r259", + "modified": "2023-10-20T15:18:52Z", + "published": "2023-10-20T15:18:52Z", + "aliases": [ + "CVE-2023-46115" + ], + "summary": "Tauri's Updater Private Keys Possibly Leaked via Vite Environment Variables", + "details": "### Impact\n\nThis 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.\n\nThe Tauri documentation used an insecure example configuration in the [Vite guide](https://tauri.app/v1/guides/getting-started/setup/vite/) to showcase how to use Tauri together with Vite. \n\nCopying the following snippet `envPrefix: ['VITE_', 'TAURI_'],` from this guide into the `vite.config.ts` of a Tauri project leads to bundling the `TAURI_PRIVATE_KEY` and `TAURI_KEY_PASSWORD` into the Vite frontend code and therefore leaking this value to the released Tauri application.\n\nUsing the `envPrefix: ['VITE_'],` or any other framework than Vite means you are not impacted by this advisory.\n\n### Patches\n\nThe documentation has been patched but as the root cause is not in Tauri itself the issue is not fixed by updating Tauri.\nThe `vite.config.ts` configuration of the project needs to be adapted.\n\nWe 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's `pubkey` value on `tauri.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.\n\n### Workarounds\n\nThe `envPrefix: ['VITE_'],`should be used and the desired `TAURI` variables manually added.\nRespective these variables could be added `TAURI_PLATFORM`, `TAURI_ARCH`, `TAURI_FAMILY`, `TAURI_PLATFORM_VERSION`, `TAURI_PLATFORM_TYPE` and `TAURI_DEBUG` without leaking sensitive information.\n\nWe urge affected users to implement the workaround as the `1.x` branch will not receive a general prevention fix as it would break systems.\n\n### References\nThe issue was originally disclosed in our discord [here](https://discord.com/channels/616186924390023171/1164260301655523409).\nThe affected guide is [https://tauri.app/v1/guides/getting-started/setup/vite/](https://tauri.app/v1/guides/getting-started/setup/vite/).\n", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "crates.io", + "name": "tauri-cli" + }, + "ecosystem_specific": { + "affected_functions": [ + "" + ] + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.0.0-alpha.16" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@tauri-apps/cli" + }, + "ecosystem_specific": { + "affected_functions": [ + "" + ] + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "2.0.0-alpha.16" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/tauri-apps/tauri/security/advisories/GHSA-2rcp-jvr4-r259" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2023-46115" + }, + { + "type": "WEB", + "url": "https://github.com/tauri-apps/tauri/commit/8b166e9bf82e69ddb3200a3a825614980bd8d433" + }, + { + "type": "WEB", + "url": "https://discord.com/channels/616186924390023171/1164260301655523409" + }, + { + "type": "PACKAGE", + "url": "https://github.com/tauri-apps/tauri" + }, + { + "type": "WEB", + "url": "https://tauri.app/v1/guides/getting-started/setup/vite/" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-200", + "CWE-522" + ], + "severity": "HIGH", + "github_reviewed": true, + "github_reviewed_at": "2023-10-20T15:18:52Z", + "nvd_published_at": null + } +} \ No newline at end of file