-
Notifications
You must be signed in to change notification settings - Fork 27
/
vpns.html
41 lines (35 loc) · 2.3 KB
/
vpns.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="referrer" content="no-referrer">
<meta name="color-scheme" content="light dark">
<link rel="stylesheet" type="text/css" href="/styles.css">
<script src="/theme.js"></script>
<script type="module" src="/button.js"></script>
<title>VPNs | Madaidan's Insecurities</title>
</head>
<body>
<button class="theme-toggle">🌓</button>
<h1>VPNs</h1>
<p class="date"><em><time datetime="2022-03-06">Last edited: March 6th, 2022</time></em></p>
<p>
VPNs give nearly no security benefit, as <a href="https://transparencyreport.google.com/https/overview?hl=en">over 95% of websites that people actually use
already support HTTPS</a>, which encrypts your connection. VPNs will only ever give a security benefit when you're browsing a site lacking HTTPS, which is rare. <br>
<br>
A VPN can provide a privacy advantage since it does hide the websites you visit from people monitoring your traffic, and it hides your IP address from the websites
you visit. However, it is important to understand the limitiations of this. When using a VPN, you send all of your internet traffic to a single server, and they can
do whatever they want with it. You have to trust them fully not to do anything malicious. There is no way for you to verify that your VPN provider doesn't log. Many
VPNs have lied about their no logging polices before, <a href="https://torrentfreak.com/ipvanish-no-logging-vpn-led-homeland-security-to-comcast-user-180505/">such as
IPVanish</a>. VPNs are also very vulnerable to <a href="https://en.wikipedia.org/wiki/Traffic_analysis">traffic analysis attacks</a>, in which sensitive information
can be inferred from the network traffic despite the encryption. <br>
<br>
If you want privacy and anonymity, use <a href="https://www.torproject.org/">Tor</a> instead, which avoids trusting a single party and is more private by design. <br>
<br>
Also see <a href="https://gist.github.com/joepie91/5a9909939e6ce7d09e29">"Don't use VPN services"</a> and <a
href="https://matt.traudt.xyz/posts/you-want-tor-24tFBCJV.html">"You want Tor Browser... not a VPN"</a>.
</p>
<a class="back" href="/index.html">Go back</a>
</body>
</html>