https://github.com/iron-m4n/erasebin
EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.
https://github.com/iron-m4n/erasebin
end-to-end-encryption pastebin pastebin-api postgresql
Last synced: 3 months ago
JSON representation
EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.
- Host: GitHub
- URL: https://github.com/iron-m4n/erasebin
- Owner: IRON-M4N
- License: mit
- Created: 2025-03-12T18:55:45.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-01T16:33:56.000Z (about 1 year ago)
- Last Synced: 2025-07-19T16:42:13.610Z (11 months ago)
- Topics: end-to-end-encryption, pastebin, pastebin-api, postgresql
- Language: JavaScript
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EraseBin
EraseBin is a self-destructing pastebin focused on privacy. It encrypts data, generates short links, and deletes pastes after viewing.
## Features
- Burn-on-read pastes
- End-to-end encryption
- Short random URLs
- Optional password
## Usage
### Create a Paste
```sh
curl -X POST https://yourdomain.com/create -H "Content-Type: application/json" -d '{"content":"Your text"}'
```
### Retrieve a Paste
```sh
curl https://yourdomain.com/{paste_id}
```
## Installation
```sh
git clone https://github.com/IRON-M4N/EraseBin.git
cd EraseBin
npm install
npm start
```
© IRON-M4N