Pastebin alternatives and similar software solutions
Based on the "Pastebins" category.
Alternatively, view Pastebin alternatives based on common mentions on social networks and blogs.
-
PrivateBin
A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES. -
Sup3rS3cretMes5age
Simple to use, simple to deploy, one time self destruct messaging service, with hashicorp vault as a backend -
Modern Paste
DISCONTINUED. Modern pastebin with a contemporary, minimalistic user interface backed by a robust feature set. -
Paaster.io
Paaster is a secure and user-friendly pastebin application that prioritizes privacy and simplicity. With end-to-end encryption and paste history, Paaster ensures that your pasted code remains confidential and accessible. -
cryptonote
:lock: A simple open source web application that lets users encrypt and share messages that can only be read once. -
ZeroBin
DISCONTINUED. This Project has been renamed and moved to https://github.com/PrivateBin/PrivateBin -
localpaste
a simple python based pastebin you can run locally, with curl for input, just like clbin.com -
Phaste
DISCONTINUED. A Phalcon-based, MySQL pastebin application with privacy-respecting Piwik integration and syntax highlighting. -
Linked.PM
A simple web application which encrypts your private messages (Java Script client-side encryption) and converts them into clickable links and QR-codes.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Pastebin or a related project?
README
Golang Pastebin
Modern self-hosted pastebin service with a restful API.
Motivation
Many Pastebin services exist but all are more complicated than they need to be. That is why I decided to write a pastebin service in golang.
Getting started
Prerequisities
- pygmentize
- go
- mariadb
pip install pygmentize
sudo yum install -y go mariadb-server mariadb
Installing
- Please note this assumes you have Mariadb and Go already setup.
- go get github.com/ewhal/Pastebin
- make
- mysql -u root -p
- CREATE USER 'paste'@'localhost' IDENTIFIED BY 'password';
- CREATE database paste;
- GRANT ALL PRIVILEGES ON paste . * TO 'paste'@'localhost';
- FLUSH PRIVILEGES;
- quit;
- mysql -u paste -p paste < database.sql
- cp config.example.json config.json
- nano config.json
- Configure port and database details
License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
*Note that all licence references and agreements mentioned in the Pastebin README section above
are relevant to that project's source code only.