ABOUT FILEPILOT

Built for Security and Speed

FilePilot replaces old, clunky FTP apps with something modern, lightweight, and genuinely secure — for individuals and teams alike.

Our Core Mission

Most file-transfer apps save your passwords in plain text or a format that's trivial to decode, leaving them exposed to malware. On top of that, they feel dated and can't automate anything on their own.

FilePilot was founded on three design criteria:

  • Real security, not obfuscation: your passwords and keys are locked with strong encryption on your own device, using a master password only you know.
  • Zero-Telemetry Privacy: No analytics logging, no telemetry, and no mandatory cloud accounts. You own 100% of your data.
  • Fast and lightweight: a native app that stays quick and uses a fraction of the memory of bulkier alternatives.

$ cargo count -f rust
Total Lines: 12,402 (Rust core engine)
Total Lines: 14,891 (TypeScript/React Views)
Memory Footprint: ~42MB (vs ~450MB Electron)
CPU Overhead: <0.5% at idle
Multi-threaded workers: tokio spawn task pool
Credential wrapping: ring::aead AES_256_GCM

How FilePilot Is Built

A look at the technology behind both apps.

Desktop Client: Tauri + Rust

Unlike Electron-based transfer clients that pack an entire Chromium browser instance, FilePilot compiles a native webview window linked to a high-speed Rust backend.

Rust handles the multi-threaded network connections, folder sync analysis, and system cryptographic operations. The React/TypeScript frontend renders the user interface in a light, hardware-accelerated viewport.

[i]
Sandboxed API Bridge: UI events are passed to Rust via Tauri IPC Commands, protecting system folders and credentials from browser-based injections.

Terminal Shell: Tauri + Rust (PTY)

The Terminal Shell uses a sandboxed WebGL/Canvas viewport linked to Rust's PTY streams (via portable-pty) to achieve high-performance text rendering with ligatures.

Rust handles the subprocess spawn pooling and secure SSH connection tunnels, while the React frontend orchestrates group broadcasting, history buffering, and session logging.

[i]
Zero-Latency Input: Deferred ligature rendering and canvas pipelines bypass typical browser layout sags for instant typing feedback.

Vault Server: Express + WebSockets

The Enterprise Vault is a Node.js web applications server. Designed to be stateless and deployable inside air-gapped networks, it routes secret delivery and logs auditing events.

It establishes real-time persistent connections with active desktop clients via WebSockets, allowing administrators to push credentials updates, trigger file reversion updates, and block client tokens instantly.

[i]
Database Portability: Support for SQLite, PostgreSQL, and MySQL allows the Vault Server to drop into existing SQL clusters.

The MIT License

FilePilot is free software released under the permissive MIT License. You are free to run, modify, fork, and distribute the software for personal, academic, or corporate use.

MIT License

Copyright (c) 2026 Abhibagul (FilePilot Project Contributors)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.