FreshRSS

πŸ”’
❌ Secure Planet Training Courses Updated For 2019 - Click Here
There are new available articles, click to refresh the page.
☐ β˜† βœ‡ /r/netsec - Information Security News & Discussion

TrashTalk.me - A new secure way to chat

By: /u/merklerkmanitee β€” June 24th 2025 at 17:44

I made TrashTalk.me - A free, zero-log, end-to-end encrypted web chat that destroys itself. TL;DR: I built a simple, anonymous, and secure web chat. You click one button, get a private link, share it with one person, and the entire chat is permanently destroyed the moment one of you leaves. No sign-ups, no logs, no history.

Hey Reddit,

For a while now, I've wanted a truly ephemeral way to have a quick, private conversation online without needing to download an app, create an account, or trust a company with my data. I wanted something as simple as handing someone a note that self-destructs after they read it.

So, I built trashtalk.me.

What is it?

It's a dead-simple, free web application that does one thing:

Click "Create Anonymous Chat" - This instantly generates a unique, 64-character URL.

Share the Link - Send this link to the one person you want to talk to. The room is strictly limited to two people.

Chat Securely - Your conversation is end-to-end encrypted directly in your browsers. The server can't read your messages.

Destroy It - The moment one person closes the tab or clicks the trash can icon, the connection is severed, and the chat room ceases to exist. The server keeps no record of it.

That's it. It’s designed for those moments when you need to share something sensitiveβ€”a password, a private thought, a confidential linkβ€”and want zero trace of it left behind.

How It Works (For the Tech-Curious)

I wanted this to be as private as possible, which meant minimizing what the server does and knows.

No Database, No Logs: The backend is a simple Python WebSocket server running on my Linode instance. Its only job is to be a temporary matchmaker for two browsers to find each other. It holds no user data, stores no messages, and doesn't even log chat room IDs. Once you disconnect, the room is gone from the server's memory.

End-to-End Encryption (E2EE): The real security happens on your device. The app uses the browser's built-in Web Crypto API to generate a new, temporary key pair for every session. These keys are used to establish a shared secret between you and your peer, and every single message is encrypted and decrypted on your respective devices. The unencrypted text never touches my server.

Peer-to-Peer (P2P) Connection: After the initial handshake, the encrypted messages are sent directly between the two users via WebRTC whenever possible, which is more private and efficient.

Why I Built This

In a world of data breaches and constant tracking, I believe we need more tools that are simple, private-by-design, and don't require you to hand over your personal information just to have a conversation. This is my small contribution to that idea. It's not meant to replace robust apps like Signal, but rather to be a quick, disposable tool for one-off private conversations.

I'd love for you to try it out and let me know what you think. I'm open to any feedback, criticism, or ideas you might have.

Thanks for checking it out!

submitted by /u/merklerkmanitee
[link] [comments]
❌