๐Ÿ” CVE Alert

CVE-2026-96454

HIGH 8.2

Pake grants unrestricted IPC access to every HTTPS origin loaded in generated applications

CVSS Score
8.2
EPSS Score
0.5%
EPSS Percentile
41th

Pake turns a website into a desktop application built on Tauri. Every application it generates inherits two settings from the upstream template, and together they hand native functionality to untrusted web content. The first is in src-tauri/capabilities/default.json, which grants IPC access with "remote": { "urls": ["https://*.*"] }. That wildcard tells Tauri to accept IPC from any HTTPS origin, not just the site the application was built to wrap. The second is "withGlobalTauri": true in src-tauri/tauri.conf.json, which puts window.__TAURI__.core.invoke() in reach of ordinary page JavaScript. Tauri's access control list only checks plugin commands, the ones prefixed with plugin:. Commands the application registers itself through generate_handler!, known as app commands, are never checked against the ACL. So once an origin holds IPC access, it can call every app command with nothing else standing in the way. Pake registers download_file as an app command, and it does not appear in the permissions list because it does not need to. The practical effect is that any script running on any HTTPS page inside a Pake application can invoke the application's native commands. That includes third-party script the wrapped site loads on its own, such as analytics, advertising, or a compromised CDN. Anyone distributing their own Pake application gets the same access without asking for it. Chained with the path traversal in download_file that is tracked separately as CVE-2026-82635, this reaches arbitrary file write and persistent code execution.

CWE CWE-862 CWE-923
Vendor tw93
Product pake
Published Sep 23, 2026
Last Updated Sep 23, 2026
Stay Ahead of the Next One

Get instant alerts for tw93 pake

Be the first to know when new high vulnerabilities affecting tw93 pake are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:H/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Changed
Confidentiality
Low
Integrity
High
Availability
None

Affected Versions

tw93 / Pake
0 โ‰ค 3.17.0

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/tw93/Pake github.com: https://github.com/tw93/Pake/blob/main/src-tauri/capabilities/default.json github.com: https://github.com/tw93/Pake/blob/main/src-tauri/tauri.conf.json v2.tauri.app: https://v2.tauri.app/security/capabilities/ github.com: https://github.com/tw93/Pake/releases/tag/V3.17.0

Credits

Yuval Moravchick | JFrog