OTS, a self hosted one time secret service that encrypts in the browser and destroys the secret on first read.
OTS is an open source, self hosted platform for handing someone a secret exactly once. You paste a password, key or short note into the web page and OTS encrypts it in your browser with 256 bit AES before anything is sent, then gives you back a single link. The decryption password travels in the fragment of that link, the part browsers never send to a server, so the service stores only ciphertext it has no way to read. The recipient opens the link once to reveal the secret and it is destroyed on that first read, so a link that has already been used shows nothing to anyone who finds it later. Secrets also carry an expiry, so anything never collected disappears on its own. There are no accounts and nothing to sign up for: you share a link, it works once, and then it is gone.
cloudimg delivers OTS hardened and fully patched, served over TLS with a certificate generated for each instance on first boot so no key material is ever shared between deployments. The application and its store both bind to loopback behind a single reverse proxy, so the only thing reachable from the network is the HTTPS front end, and plain HTTP redirects to it. Secrets are held in memory with disk persistence switched off and a hard maximum lifetime, so nothing sensitive is ever written to the disk. OTS is unauthenticated by design and ships with no login of any kind; the one internal password the appliance uses is generated fresh per instance at first boot and written to a root only file, so nothing usable is baked into the image. The application is held shut until that first boot bootstrap has finished, which closes the window where a freshly started instance could serve with build time settings. Backed by 24/7 cloudimg support and a paired deploy guide.
Real screenshots taken while testing this image against its deployment guide.