FileShot – zero-knowledge file sharing, nothing locked behind accounts
Real zero-knowledge (key in URL fragment), 50GB free files, no signup dark patterns.

Magic-byte scanning catches disguised executables; but Tresorit and Sync.com already do encrypted transfer.
IT professionals, system administrators, anyone transferring sensitive files without account friction.
Magic Wormhole · Tresorit Send · Sync.com file transfer
I'm a software engineer in IT support. I constantly need to transfer large log files and system images securely between machines. Existing tools either had size limits, required accounts, or lacked real encryption. So I built ShareNova.
How it works:
Live transfer: Server-relayed WebSocket streaming, chunked with bitfield tracking for automatic resume on disconnect. No account required.
Deferred storage: When the receiver is offline, files are chunked and encrypted client-side using AES-256-GCM (PBKDF2 key derivation, 200K iterations) before upload. The server only stores ciphertext. Keys never leave the browser.
Magic-byte file scanner: Every deferred file is scanned server-side by reading the first 16 bytes and comparing against known signatures. Detects disguised executables (MZ header in a .jpg), double extensions, and archives containing dangerous files. Results are shown as safety badges to the receiver.
In-browser preview: Images, video, audio, PDF, and code files can be previewed before download without breaking the security model.
The stack is Node.js + Express + ws, single-server, no external dependencies for the core transfer logic.
Try it: https://sharenova.io
I'd love feedback on the architecture and the scanning approach.
Real zero-knowledge (key in URL fragment), 50GB free files, no signup dark patterns.
True zero-knowledge file sharing: keys in URL fragment, server literally cannot decrypt even with access.
WASM port of wormhole-rs brings SPAKE2 encryption to browsers without server storage.
Keys in URL hash means server literally cannot decrypt — crypto challenge proves it.
Eight years of maintenance but privnote and 1Password already solve this.
Client-side AES-256-GCM for .env sharing, but Wire, OnePassword, and Bitwarden vaults already solve this.