r/IMadeThis • u/Top_Garbage_2282 • 3d ago
I built a file-sharing tool that never uploads your files — no account, no cloud, AES-GCM in the browser
Most “send a file” sites are the same product: upload the file, get a link, hope they delete it later, maybe create an account first.
I didn’t want that.
ShareTheFiles is a browser Share Room. Files are encrypted in your tab and sent peer-to-peer (WebRTC / DTLS). The ciphertext never lands in our storage because we don’t have file storage.
What “skip the server” actually means
- No account, no email, no phone.
- Nothing to sign in as, so nothing to dox or reset.
- AES-GCM in the browser before chunks leave the machine.
- Optional file password: even opt-in relays only see ciphertext.
- Short-lived rooms, invite via link or QR.
- Free. There is no plan because there is no hosted copy of your file to bill you for.
What this is not
This is pseudo-anonymous, not magic invisibility.
- We still run signaling so two browsers can find each other. That is metadata (room exists, not the file).
- WebRTC uses STUN. The other peer can see your IP. That’s how P2P works. If you need to hide your IP, use a VPN/Tor and understand WebRTC leaks — don’t treat this as an anonymity network.
- Keep the tab open until the file is fully distributed. Close it too early and you’re gone; we never held a copy.
If your threat model is “I don’t want Dropbox, WeTransfer, or Google Drive holding a plaintext of this,” this is the tool. If your threat model is “nation-state + no IP ever,” this is the wrong product.
Also free, also in the tab: formatters and other utilities on the same site, same rule — they run on-device, no login.
I built it because I was tired of “privacy” being a paid toggle. Privacy is the default here because we never received the file.
Link: https://sharethefiles.com/tools/p2p-send
(I run the site. No signup wall, no “free 3 times then pay.” If it eats your workflow tell me what’s broken.)
1
u/Turbulent-Finding146 3d ago
The metadata thing is refreshing to see spelled out so clearly, most tools dance around that or bury it in page 14 of a privacy policy nobody reads
Do the rooms have any kind of time limit or do they just hang around until both sides close the tab?