SnapPass shares a password or key by a link that works exactly once and is destroyed the moment it is read.
SnapPass is a self hosted one time secret service. You paste a password, an API key or any short piece of text, choose how long it may live, and SnapPass gives you back a link. The first person to open that link sees the secret once and SnapPass destroys it in the same moment, so the link is dead from then on; if nobody opens it, the secret expires on its own. It replaces the habit of pasting credentials into chat and email, where they sit in a searchable history indefinitely.
Each secret is encrypted under a key generated just for it. Only the ciphertext is kept in the datastore and the decryption key lives nowhere except inside the link you send, so the datastore on its own reveals nothing. A small web interface covers the whole flow, and a simple API covers the same ground for scripts and automation.
cloudimg builds this image for the promise the software makes rather than merely installing it. The datastore is configured in memory only, deliberately, so no secret material is written to a file that could outlive the secret, and TLS is terminated from first boot because the link itself carries the decryption key. The web server records no request address in its logs and the application access log is switched off, and a first boot check performs a complete end to end exchange with a marked test value then searches the web server logs, the system logs, the system journal and the datastore directory for it, refusing to finish booting if it finds anything. Creating secrets requires a sign in unique to each instance while reading a link does not, so links can be shared outside your organisation. Every instance generates its own application secret key, datastore password, sign in password and certificate on first boot and none of them exists in the image, which serves nothing on a routable port until those exist. Fully patched with unattended security upgrades, paired with a step by step deploy guide, and backed by 24/7 cloudimg support.
Real screenshots taken while testing this image against its deployment guide.