A VPN does not make you anonymous. The billboards lie. If you walked away from this article believing one thing, make it that.
Let's separate the myth from the machine.
What a VPN actually does
A VPN does one job well: it hides your traffic from the network you're sitting on. Your ISP, the coffee shop Wi-Fi, the airport hotspot — they see an encrypted tunnel instead of which sites you visit.
That's it. That's the real benefit.
It swaps your visible IP address for the VPN's. So websites see the VPN's location, not yours.
Useful. Not invisibility.
What a VPN does NOT hide
Here's where the myth falls apart.
Your logins. The moment you sign into Google, Amazon, or Instagram, the VPN is irrelevant. You just told them exactly who you are.
Browser fingerprinting. Your screen size, fonts, time zone, and browser quirks form a near-unique ID. Sites track that across any IP address.
Cookies. Already in your browser. A VPN doesn't clear them.
The VPN company itself. You moved your trust from your ISP to a single company that sees all your traffic. Free VPNs often pay their bills by selling that data.
So the question isn't "do I have a VPN?" It's "who do I trust to see everything?"
The trust swap nobody mentions
Your ISP is legally bound and bored. A sketchy free VPN is neither. Many log everything, then sell it.
If you're trusting a stranger anyway, host your own.
Self-host your own VPN in an evening
This is the part that actually fixes the trust problem. Run a VPN on hardware you control, and there's no third party to sell your data.
WireGuard is the easiest path. It's fast, tiny, and built into modern Linux.
The simplest start:
- Grab a cheap VPS or use a Raspberry Pi at home.
- Install wg-easy with Docker — it gives you a web dashboard and QR codes for your phone.
- Scan the QR code in the WireGuard app. Done.
docker run -d \
--name=wg-easy \
-e WG_HOST=your.server.ip \
-p 51820:51820/udp \
-p 51821:51821/tcp \
weejewel/wg-easy
Now your phone tunnels through your own box. On public Wi-Fi, the cafe sees nothing. And no company is logging your traffic — because you are the company.
Use the right tool for the right fear
- Worried about coffee shop snoops? A VPN fixes that.
- Worried about ad tracking? You need a tracker blocker and fewer logins, not a VPN.
- Worried about Google profiling you? A VPN does almost nothing.
Match the tool to the actual threat.
Your takeaway
Stop treating a VPN as an invisibility cloak. It's a tunnel, not a disguise. Tonight, do one thing: spin up WireGuard with wg-easy on a Pi or cheap VPS, and stop handing your traffic to a company you've never met.