this post was submitted on 18 Mar 2026
224 points (97.9% liked)

Technology

82830 readers
3398 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

Firefox’s free VPN will offer 50 gigabytes of monthly data, which is pretty generous for a browser-based VPN. A Mozilla account is required to make use of it, which isn’t a hardship (they’re free), but is a point of friction some may wish to know upfront.

you are viewing a single comment's thread
view the rest of the comments
[–] RaisinCrazyFool@kopitalk.net 21 points 1 day ago (2 children)

Generally not. Anything with authentication would be using HTTPS encryption. So there will be two layers of encryption: the VPN encryption and the web site's HTTPS encryption. The VPN provider can't replace the HTTPS encryption because your browser would identify it as being encrypted with the wrong certificate and it would block the connection.

Although...given that they control the browser, too, I suppose they could code it to remove those safeguards, but that would not go unnoticed for long.

When you use a VPN, it basically replaces your ISP as the intermediary who can snoop all your traffic, so the real question is who do you trust more: your ISP or Mozilla?

[–] victorz@lemmy.world 2 points 22 hours ago (1 children)

What I was thinking was that the VPN would be able to sniff the key exchange hand shake thing that HTTPS does in order to setup the connection, and use the data during the handshake to basically recreate the cryptographic key used for the connection later. So then it'd be able to just decrypt all traffic and reencrypt it again after passing through. Seamlessly to both ends.

Is that a thing in theory?

[–] RaisinCrazyFool@kopitalk.net 5 points 16 hours ago (2 children)

The SSL/TLS encryption used on the web is designed to prevent that type of attack. It's called "asymmetric encryption", because a different key is used to encrypt and decrypt data. So each side has both a private and public key. You can broadcast your public key, and then anyone can use it to encrypt a message that only YOU can decrypt, with your private key. The private key never goes over the network, so the VPN provider can't intercept messages meant for you.

It's possible to spoof the server's certificate and make your browser think it's talking to a real server when it's not. However, this is difficult, because certificates follow a chain of trust, so they'd either need to compromise one of the certificate authorities (plausible for state-level actors), or compromise your web browser/OS so that it trusts a fake authority (definitely possible for a browser/OS vendor, but again, it would be noticed, especially in an open-source product like Firefox).

There are lot of enterprise products out there that perform this kind of "attack" so that businesses can monitor their network traffic. They do this by requiring adding their certificate authority to the list of trusted certs in the OS. This is often called "deep packet inspection". If you try to use these products without adding their certs, your browser will throw a fit every time you load a site because it will see that the certificate doesn't match.

[–] village604@adultswim.fan 1 points 7 hours ago

Thank you for finally making how ssl/tls works click.

[–] victorz@lemmy.world 1 points 13 hours ago

Interesting, okay. Just to be clear, if the middle man, i.e. the VPN, were to listen in on the data exchanged during the TLS handshake, wouldn't it be able to recreate both parties' key pairs simply using the same algorithm? If it has all the pieces, so to speak. Or is the tech resistant to that as well?

[–] nymnympseudonym@piefed.social 4 points 1 day ago (1 children)

assume the VPN provider is adversarial

now re-run your analysis

[–] XLE@piefed.social 11 points 1 day ago (1 children)

This is true regardless. HTTPS encryption keeps a man in the middle from seeing your URL. They just get the domain name, which is a lot, but it isn't your credentials.

[–] nymnympseudonym@piefed.social -1 points 16 hours ago (2 children)

They don't know the URL but they know the IP address so ... yes, they also can get the URL

[–] RaisinCrazyFool@kopitalk.net 4 points 16 hours ago

IP addresses do not map to URLs.

They might map to domains, but not necessarily.

[–] Passerby6497@lemmy.world 3 points 15 hours ago

You cannot reliably get the URL from an IP, there's no direct mapping, especially with shared hosting.