Curated privacy tools, VPN services, encryption software, YouTube channels, GitHub repos, and developer references.
Recommended software for protecting your online activity.
The primary tool for accessing .onion sites. Routes your traffic through multiple encrypted layers for anonymous browsing.
DownloadA portable Linux distribution that routes all traffic through Tor and leaves no trace on the host machine.
DownloadA security-focused OS designed to run inside a virtual machine. Isolates your real IP behind the Tor network.
DownloadAn offline, open-source password manager. Keeps your credentials encrypted locally with no cloud dependencies.
DownloadTrusted VPN providers with strict no-log policies.
Privacy-first VPN that accepts cash and cryptocurrency. No email required, no logging, fully audited infrastructure.
VisitSwiss-based VPN with a free tier. Strong encryption, Secure Core servers, and no-logs policy backed by Swiss law.
VisitMinimal-logging VPN with a focus on transparency. Open-source clients, supports WireGuard, accepts Monero.
VisitSoftware for encrypting files, messages, and disks.
The standard implementation of PGP encryption. Encrypt messages, sign files, and verify identities using public-key cryptography.
DownloadOpen-source disk encryption. Create encrypted volumes or encrypt entire partitions with strong AES-256 encryption.
DownloadEnd-to-end encrypted messaging app. Open-source protocol, minimal metadata collection, self-destructing messages.
DownloadEducational content on privacy, security, and OPSEC.
In-depth coverage of surveillance, data privacy, and digital rights.
Practical guides to improving your digital privacy and security.
Linux, privacy tools, and commentary on tech industry trends.
Community-curated lists and projects dedicated to privacy.
A curated list of privacy-respecting services and software. Covers browsers, search engines, email, messaging, and more.
View on GitHubA comprehensive list of free software network services and web applications that can be hosted on your own servers.
View on GitHubThe source repository for PrivacyTools.io, providing knowledge and tools to protect your privacy against global mass surveillance.
View on GitHubEssential Git commands every developer should know.
| 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 |