CVE-2026-95625 PUBLISHED

Tauri framework v2 missing updater signature version number validation can be exploited into forced downgrade

Assigner: JFROG
Reserved: 22.09.2026 Published: 23.09.2026 Updated: 23.09.2026

The Tauri updater plugin verifies update binaries using minisign signatures, but the signature covers only the raw binary bytes. The update manifest -- which contains the version number, download URL, and signature -- is fetched over TLS but is never itself signed or authenticated. Because the only anti-rollback check compares the manifest's version field against the current version, and that field is unsigned, an attacker who can serve a crafted manifest can force installation of any older signed release without possessing the developer's private key.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:N
CVSS Score: 5.9

Product Status

Vendor Tauri
Product tauri-plugin-updater
Versions Default: unaffected
  • affected from 2.0.0 to 2.12.0 (excl.)
  • affected from 2.12.0 to * (incl.)

Solutions

addressed in tauri-plugin-updater 2.12.0, and it has to be switched on. The new requireSignedVersion option compares the version announced by the endpoint against the version recorded in the signature's trusted comment, which the signature does cover, and rejects the update when they differ.

Credits

  • Yuval Moravchick finder
  • JFrog Security Research coordinator

References

Problem Types

  • CWE-354: Improper Validation of Integrity Check Value CWE