Zukimo App Vault is a security-first application containerization platform engineered to isolate web-based services into standalone, privacy-hardened desktop environments. Built on the high-performance Tauri (Rust-based) framework, the Vault leverages the host system’s native WebView2 engine to eliminate cross-site tracking, session leakage, and credential overlap while maintaining strict zero-cloud privacy and enterprise compatibility.
1. Core Architecture & Runtime
- Tauri (Rust) Framework: Built on Rust to enforce strict memory safety, low resource overhead, and isolation between UI logic and underlying OS web containers.
- Isolated Data Directories: Assigns a physically distinct WebView2 user data directory and process to every app container.
- Side-by-Side Multi-Account Isolation: Allows users to run multiple independent instances of the exact same web service or URL concurrently (e.g., five separate logged-in accounts) with zero cookie collisions or session cross-contamination.
- Native Engine Alignment: Natively leverages the host system’s Edge/WebView2 runtime rather than custom browser builds or User-Agent spoofing. This produces legitimate browser traffic signatures that satisfy enterprise client-integrity checks and avoid Web Application Firewall (WAF) or anti-bot flags.
- Intercept Layer: Automatically captures all navigation attempts directed outside the designated app domain.
- Confirmation Gate: Routes trapped external links through a buffer gate, allowing users to copy the URL or safely redirect to the default host browser.
- Sub-resource & Frame Protection: Traps iframe-based redirects and hidden links to prevent unauthorized background navigations.
3. Zero-Cloud & Network Security Architecture
- 100% Local-Only Storage: All application data, passwords, and license information remain on the host machine. There are no user accounts, cloud dependencies, or remote sync databases.
- Zero Telemetry: No usage reporting, diagnostic analytics, or automatic server pings.
- Restricted Network Triggers: Network connections are limited strictly to three user-initiated scenarios: one-time license activation, manual update checks, and initial icon fetching.
- WebRTC Leak Prevention: WebRTC is disabled by default to prevent IP address leaks when operating behind VPNs.
4. Cryptographic Privacy & Local Access
- Salted One-Way Hashes: Vault passwords are processed via salted cryptographic hashes and wiped from memory immediately after verification.
- Artifact Cleanup: Supports on-demand or automatic purging of cookies, local storage, and cached session artifacts.
- OS Sandboxing Constraints: Restricted to its local directory without filesystem, camera, or microphone access.
| Feature | Technical Implementation |
|---|---|
| Framework & Engine | Tauri (Rust-based) + Native WebView2 |
| Data Storage | 100% Local-only / Zero-Cloud |
| Telemetry | Disabled / None |
| Network Requests | Manual only (Activation, Updates, Icon fetch) |
| Multi-Account State | Isolated data directory per app instance |
| IP Protection | WebRTC disabled by default |
| Credential Security | One-way salted hash + immediate memory wipe |
