Official .onion Updated 20 min ago
Toolkit

Useful Resources

Curated privacy tools, VPN services, encryption software, YouTube channels, GitHub repos, and developer references.

Privacy Tools

Recommended software for protecting your online activity.

Tor

Tor Browser

The primary tool for accessing .onion sites. Routes your traffic through multiple encrypted layers for anonymous browsing.

Download
Tls

Tails OS

A portable Linux distribution that routes all traffic through Tor and leaves no trace on the host machine.

Download
Wh

Whonix

A security-focused OS designed to run inside a virtual machine. Isolates your real IP behind the Tor network.

Download
KB

KeePassXC

An offline, open-source password manager. Keeps your credentials encrypted locally with no cloud dependencies.

Download

VPN Services

Trusted VPN providers with strict no-log policies.

Mu

Mullvad VPN

Privacy-first VPN that accepts cash and cryptocurrency. No email required, no logging, fully audited infrastructure.

Visit
Pr

ProtonVPN

Swiss-based VPN with a free tier. Strong encryption, Secure Core servers, and no-logs policy backed by Swiss law.

Visit
IV

IVPN

Minimal-logging VPN with a focus on transparency. Open-source clients, supports WireGuard, accepts Monero.

Visit

Encryption Tools

Software for encrypting files, messages, and disks.

GP

GnuPG (GPG)

The standard implementation of PGP encryption. Encrypt messages, sign files, and verify identities using public-key cryptography.

Download
VC

VeraCrypt

Open-source disk encryption. Create encrypted volumes or encrypt entire partitions with strong AES-256 encryption.

Download
Sg

Signal

End-to-end encrypted messaging app. Open-source protocol, minimal metadata collection, self-destructing messages.

Download

YouTube Channels

Educational content on privacy, security, and OPSEC.

The Hated One

In-depth coverage of surveillance, data privacy, and digital rights.

Techlore

Practical guides to improving your digital privacy and security.

Mental Outlaw

Linux, privacy tools, and commentary on tech industry trends.

GitHub Repositories

Community-curated lists and projects dedicated to privacy.

awesome-privacy

A curated list of privacy-respecting services and software. Covers browsers, search engines, email, messaging, and more.

View on GitHub

awesome-selfhosted

A comprehensive list of free software network services and web applications that can be hosted on your own servers.

View on GitHub

privacytools.io

The source repository for PrivacyTools.io, providing knowledge and tools to protect your privacy against global mass surveillance.

View on GitHub

Git Commands Cheat Sheet

Essential Git commands every developer should know.

Terminal — Git Quick Reference
git clone <repo-url> Clone a remote repository to your local machine
git add . Stage all changed files for the next commit
git commit -m "message" Create a new commit with staged changes and a message
git push origin <branch> Push local commits to the remote repository
git pull origin <branch> Fetch and merge remote changes into your local branch
git branch <name> Create a new branch from the current HEAD
git merge <branch> Merge a branch into the current branch
git stash Temporarily save uncommitted changes for later use
git log --oneline --graph View commit history in a compact, visual format
git diff Show unstaged changes between working directory and index
git reset --soft HEAD~1 Undo the last commit but keep changes staged