• Stars
    star
    380
  • Rank 110,112 (Top 3 %)
  • Language Svelte
  • License
    GNU Affero Genera...
  • Created over 2 years ago
  • Updated 6 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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.

Β 

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.

Terms of service | Privacy policy

Β 

translation badge

Preview

Desktop preview

Features

  • End-to-end encryption.
  • Memory efficient.
  • File drag & drop.
  • Shortcuts.
  • Paste history (with support for unix-like search).
  • Delete after view or X amount of time.
  • API documentation.
  • CLI Tool.
  • Access code protection (Require a passphrase to view paste.)
  • Rate limiting.
  • Share via QR code.
  • PWA support.
  • i18n support (Contribute).
  • Automatic or manual language detection.
  • No dynamically loaded 3rd party dependencies, meaning malicious code must be present at build time.
  • Use of package-lock.json, poetry.lock & Socket.dev to fight against supply chain attacks & vulnerabilities.
  • Vercel support.

Security

What is E2EE?

End-to-end encryption (E2EE) is a zero-trust encryption methodology. When you paste code into Paaster, it is encrypted locally in your browser using a secret that is never shared with the server. Only people you share the link with can view the paste.

Can I trust a instance of paaster not hosted by me?

No. Anyone could modify the functionality of Paaster to expose your secret key to the server. We recommend using a instance you host or trust.

How are client secrets stored?

Client secrets are stored with IndexedDB when the paste is created, allowing for paste history. This method of storage makes Paaster vulnerable to malicious JavaScript, but it would require malicious code to be present when the Svelte application is built.

How are client secrets transported?

Paaster uses URI fragments to transport secrets, according to the Mozilla foundation URI fragments aren't meant to be sent to the server. Bitwarden also has a article covering this usage here.

How are server secrets stored?

Server secrets are stored with IndexedDB when the paste is created, allowing for modification or deletion of pastes later on. The server-sided secrets are generated using the Python secrets module and stored in the database using bcrypt hashing.

Cipher

Paaster uses XChaCha20-Poly1305 encryption, which is implemented using the libsodium-wrappers library.

Shortcuts

  • Ctrl+V - Paste code.
  • Ctrl+S - Download code as file.
  • Ctrl+A - Copy all code to clipboard.
  • Ctrl+X - Copy URL to clipboard.

Requesting features

  • Open a new issue to request a feature (one issue per feature.)

What we won't add

  • Paste editing.
    • Paaster isn't a text editor, it's a pastebin.
  • Paste button.
    • Paaster isn't a text editor, when code is inputted it will always be automatically uploaded.
  • Optional encryption.
    • Paaster will never have opt-in / opt-out encryption, encryption will always be present.

Setup

Production with Docker

NOTE: Latest MongoDB requires CPU with AVX support. If you're using virtual CPU (e.g. kvm64) it will not work. To fix that, either downgrade MongoDB to 4.x, or adjust your VM CPU configuration.

Public S3

  • During configuration, no provided URLs should be suffixed with a slash.
  • Configure docker-compose.yml (example here)
  • Fine-tune networks and/or volumes, if needed
  • sudo docker compose up -d
  • Proxy exposed ports using Caddy/Traefik/Nginx/Apache2 (or whatever reverse proxy you prefer)

Self-hosted S3 (using MinIO)

  • Create .env file (example here)
  • Create docker-compose.yml (example here)
  • Fine-tune networks and/or volumes, if needed
  • sudo docker compose up -d
  • Proxy exposed ports using Caddy/Traefik/Nginx/Apache2 (or whatever reverse proxy you prefer)

NOTE: the self-hosted version uses a temporary container (paaster-minio-init) to create initial bucket in MinIO container and configure it for public access.

Recommended headers for frontend

Disable automatically via Vercel

  • Strict-Transport-Security: max-age=31536000
  • X-XSS-Protection: 1; mode=block
  • X-Frame-Options: DENY
  • Feature-Policy: microphone 'none'; camera 'none'; geolocation 'none'; payment 'none';

Vercel

Paaster's frontend is also configured to work with Vercel, which offers enhanced security through server separation and improved performance.

Using Rclone

Rclone is no longer supported for performance reasons & paaster is now only s3 compatible.

Look at Self-hosted S3 or Storage providers for cheap / free s3 storage.

Object storage providers

Production without docker

This setup is not recommended & requires more research / knowledge.

  • git clone https://github.com/WardPearce/paaster.
  • cd frontend
  • Create .env
    • VITE_NAME - The name displayed on the website.
    • VITE_API_URL - The URL of the API.
  • Install nodejs
    • npm install
    • npm run build
  • Serve files generated in dist with Nginx (or whatever reverse proxy you use.)
  • cd backend
  • Install Python 3.10+
    • curl -sSL https://install.python-poetry.org | python3 -
    • Configure run.py following the guide for uvicorn.
  • Pass environmental variables
    • paaster_proxy_urls.
    • paaster_s3.
    • paaster_mongo.
    • paaster_open_api.
    • paaster_max_iv_size.
    • paaster_max_paste_size.
  • Run poetry run server, to start server.
  • Proxy exposed ports using Caddy/Nginx/Apache2 (or whatever reverse proxy you prefer.)

Storage breakdown

Paaster uses Amazon S3 for storing large files, specifically, encrypted pastes. This allows us to save and share data quickly and easily through a Content Delivery Network (CDN). Some key advantages of using S3 are splitting data into smaller chunks, fast data sharing, and making copies of data for safety. The S3 buckets are expected to be publicly downloadable (they are end-to-end encrypted anyway), but the public directory listing should be disabled.

We use MongoDB for handling metadata information about each encrypted paste. It includes details like when the paste will expire, storage of access codes, initialization vector (IV) storage, and owner's secrets.

Adding translations

Use inlang to contribute to translations

More Repositories

1

py-styles

Raw CSS to make your site look like python code.
HTML
43
star
2

thanker

Don't be a wanker, be a thanker! Automatically give thanks to Pypi packages you use in your project.
Python
27
star
3

Purplix.io

Purplix is an open-source collection of tools dedicated to user privacy and creating trust with your audience.
Svelte
25
star
4

SourceQueryBot

Utilizing A2S, this discord bot allows you to display servers maps, player count & ip what refreshes at a set interval.
Python
24
star
5

Paycord

Paid roles for discord using Stripe, Python, Flask & Docker
Python
17
star
6

jellyfin-session-kicker

Session kicker after X amount of watch time for Jellyfin
Python
15
star
7

aioquery

Lightweight asynchronous A2S wrapper
Python
9
star
8

backblaze

Asynchronous & synchronous Wrapper for Backblaze's B2
Python
9
star
9

omitme

OmitMe - Your Privacy-Centric, Easily Extendable Data Deletion Solution.
Python
8
star
10

OBRequests

Modern typed requests for Python 3 built on-top of HTTPX
Python
8
star
11

legacy-privfiles

Privfiles - Encrypted file storage using Fernet with zero Javascript
Python
6
star
12

paaster-cli

Upload locally encrypted pastes to paaster.io from your desktop.
Python
6
star
13

proxycheck

Asynchronous & synchronous Wrapper for Proxycheck.io's API.
Python
6
star
14

aioaccount

Utility for user account creation, modification & email confirmation.
Python
6
star
15

Discord-Instagram-Alerts

Track your favorite Instagram accounts with this script! Extremely fast with proxy support!
Python
5
star
16

capy.life

Backend for capy.life
TypeScript
4
star
17

computational-captcha

Proof-of-work captcha built off Argon2.
Python
2
star
18

NitroGen

Discord Nitro code generator and checker
Python
1
star
19

WardPearce

1
star
20

falcon-signed-sessions

Trusted sessions for falcon using itsdangerous.
Python
1
star