Novel attack against virtually all VPN apps neuters their entire purpose
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    No worries, and thanks for providing a response nonetheless. I'll look into your suggestion when I have the time. The official Wireguard website also had some guide on network namespaces here but afaik it didn't explain how to set it up persistently

    1
  • addressing misconceptions about the recent TunnelVision vulnerability
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Great write-up, I've been looking for something like this. I've heard of vopono and eznetns before but not namespaced-openvpn, and this is the first post I've seen where somebody details how they use a tool like this, so thanks! I'll have to try setting it up some time.

    3
  • addressing misconceptions about the recent TunnelVision vulnerability
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Yeah, you don't have to dig very deep to find out how insecure our networks are. Mac addresses can be spoofed, ports can be scanned, TCP numbers can be guessed, etc...

    2
  • Does self-hosted VPN make sense?
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    From a privacy standpoint I don't think it would make a big difference over not using a VPN at all. It will take a bit of time but your new IP will become associated with your identity. From the perspective of Facebook and Google, it will just look like you moved and are living inside a datacenter now.

    5
  • addressing misconceptions about the recent TunnelVision vulnerability
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    If exposing hostnames and IP addresses is dangerous

    It's not necessarily dangerous, but it's a major privacy issue. Hiding your browsing history from other people (except for the VPN provider) is one of the main reasons why people get a commercial VPN in the first place. And this vulnerability mainly concerns those users.

    6
  • addressing misconceptions about the recent TunnelVision vulnerability
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    I added clarification that the HTTPS part is assuming that the attacker has already performed the DHCP attack. Thanks for the note!

    The DHCP race is one part I didn't go into detail about since I'm not very familiar with the details, but what you wrote makes sense. One potential danger is a hacker at a coffee shop, where the shop owner is unlikely to be monitoring the network, and there are going to be many new connections coming in all the time. It's still an unlikely scenario, but it also isn't a particularly difficult attack.

    3
  • sharing my simple wireguard kill-switch for Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    No offense taken, on the contrary thanks for the constructive criticism! I'll add some more details to my repo to make things more clear.

    1
  • sharing my simple wireguard kill-switch for Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Yeah, it does come down to threat model and preference. If you only need to route specific apps, Gluetun sounds like a great solution.

    2
  • linux
    Linux 6mo ago
    Jump
    sharing my simple wireguard kill-switch for Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    I see what you mean now. I wouldn't advocate for people to disable DHCP features either. It should be the VPN provider's responsibility to provide a proper VPN client that mitigates attacks like these.

    1
  • I've been seeing a lot of confusion around the TunnelVision vulnerability. While I'm no expert, I've done a fair share of research and I'll edit this post with corrections if needed. The goal of this post is to answer the question: does this affect me? **Two sentence summary of the vulnerability** When you use a commercial VPN like Mullvad or NordVPN, the VPN client tells your system to redirect all traffic through the VPN. This recent vulnerability shows that a malicious device on the network can trick your system into redirecting traffic to _their_ device instead. **Claim: just don't connect to hostile networks!** This is hard in practice. For most people, the only "trusted" networks are your home network and your workplace. So you still have to worry about coffee shops, airports, hotels, restaurants, etc. And if you are using cellular data, the cellular tower can perform this attack to snoop on your traffic. **Claim: but I trust the hotel owner, restaurant owner, etc** This attack allows _any_ device on the network to impersonate a DHCP server and attack your system, not just the router. And while there are router settings that can prevent devices on the network from talking to each other, afaik they are rarely used. So even if you trust the owner of the cafe, you have to also trust everybody else in the cafe. **Claim: if you use HTTPS you are safe!** If the attacker redirects traffic to their machine, then even if you use HTTPS, the attacker can still see what websites you connect to, they just can't see what you are sending or receiving. So basically they can steal your browsing history, which defeats the purpose of a commercial VPN for many users. **Claim: Linux users are safe!** Not quite. The report says that Linux has a feature that is able to fully defend against this vulnerability, called network namespaces. So if your VPN uses that, congratulations. Afaik most VPNs do not use this, and instead use a kill-switch or a firewall. In which case Linux, Mac, and Windows users are all affected the same way, and I go into it more in the next claim. **Claim: if you use a kill-switch you are safe!** The term "kill switch" gets thrown around a lot but there's actually two major ways that a kill-switch can be implemented. The first way is a more literal "kill switch" - when the VPN connection drops, the kill switch is triggered and blocks leaks. The other way is a persistent firewall, which blocks leaks all the time. If your VPN client uses the first kind, then bad news, it won't protect you against this attack. This is because the VPN connection is never dropped, so the kill switch is never triggered. NordVPN was caught using this poor practice, to nobody's surprise (more info [here](https://news.ycombinator.com/item?id=40280496)). If your VPN uses the second kind, then you should be safe. For example, Mullvad published a statement about how they are not vulnerable [here](https://mullvad.net/en/blog/evaluating-the-impact-of-tunnelvision). I would hope that any competent VPN would also use a persistent firewall, but if your VPN provider hasn't published a statement yet, unfortunately your only other option is to inspect the VPN client yourself. That being said, even if your VPN uses a persistent firewall, you may have read in the report that there's a "side-channel" attack still possible... **Claim: even if you use a firewall, there's a side-channel attack** This is true, but from what I read the side-channel is actually very hard to pull off and gain any useful information from. You can read some discussion about it [here](https://news.ycombinator.com/item?id=40280296). My takeaway is that if you're a regular user, you don't have to worry about it. But we should still push VPN providers and network engineers to use network namespaces in their applications, since they are more resistant to these kinds of attacks. **Claim: you shouldn't trust commercial VPN providers anyways** This is not really about the vulnerability but I've seen it a lot in the discussions. I think it's a mischaracterization of why people use VPNs. If you are using the internet, _somebody_ has to send that traffic to your destination. The three major options are your ISP, a VPN provider, or Tor. Depending on your location and your circumstances, you will trust these three differently. In the EU, ISPs are not allowed to sell data. In the US, ISPs are allowed to, and have been caught doing so. VPNs can sell data too but they risk losing their entire business. Tor is much harder to judge, but the bigger issue with Tor is that many websites block it. **Further reading:** - [Official Report](https://www.leviathansecurity.com/blog/tunnelvision) - [Official TLDR and FAQ](https://tunnelvisionbug.com/) - [Arstechnica article](https://arstechnica.com/security/2024/05/novel-attack-against-virtually-all-vpn-apps-neuters-their-entire-purpose/) - [Hacker News discussion](https://news.ycombinator.com/item?id=40279632) - one of the original researchers is active in this discussion, see comments by @morattisec

    85
    19
    Mullvad VPN: Introducing Defense against AI-guided Traffic Analysis (DAITA)
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Yeah TOR is an example of a mixnet. WHat I was talking about was a combination of your Scenario A and Scenario B, where you have a mixnet where everybody's traffic goes through multiple proxies, and many people are using each proxy, and you have padding and timing added to make sure traffic flows are consistent. As far as trusting nodes, you have to do that regardless of your set up. If you don't use any VPN, you have to trust your ISP. If you use a VPN like Mullvad, you have to trust Mullvad. If you use a mixnet, you have to trust that all your chosen proxies aren't colluding. So like you said, it's up to your own judgement and threat model.

    2
  • linux
    Linux 6mo ago
    Jump
    sharing my simple wireguard kill-switch for Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    why is a split tunnel relevant? I thought all VPNs are vulnerable unless they use a firewall like I do, or network namespaces.

    At least the way I understand it, a normal VPN redirects your internet traffic to instead go through a virtual network interface, which then encrypts and sends your traffic through the VPN. This attack uses a malicious DHCP server to inject routes into your system, redirecting traffic to the attacker instead of towards the virtual network interface.

    1
  • Mullvad VPN: Introducing Defense against AI-guided Traffic Analysis (DAITA)
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Hypothetically, what if everybody in the world were using mixnets to obfuscate destination/origin, and then mullvad's DAITA to obfuscate traffic timing and size. Would netflow analysis be able to defeat that?

    1
  • Novel attack against virtually all VPN apps neuters their entire purpose
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    It all depends on how much you trust the devices on your LAN. So your ISP can't do anything unless they own and control your router, since that is on your LAN. So one concern might be if you connect your PC to coffee shop wifi, since all other devices in the shop are on the same LAN, not to mention the coffee shop owns the wifi router and can also perform the attack. Another concern might be if a family member in your house has a device that got hacked, then all devices in your house are vulnerable.

    2
  • Mullvad VPN: Introducing Defense against AI-guided Traffic Analysis (DAITA)
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    I think you both are talking past each other. You said "But if nobody else is using those same endpoints." but @MigratingtoLemmy@lemmy.world said "There’s plenty of people who are going to be renting VPSes and will have their traffic originate from the same IP range as mine". Reading this thread, it seems like you both have different network setups in mind.

    2
  • Novel attack against virtually all VPN apps neuters their entire purpose
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    Do you know how to make it so all the host's traffic is sent through the VPN namespace? I couldn't figure out how to do this so I ended up just writing my own firewall. Network namespaces seems like a better solution.

    1
  • Novel attack against virtually all VPN apps neuters their entire purpose
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    I saw that but unfortunately it doesn't detail how to set it up persistently on every boot. And I also haven't seen anybody using this method, probably because of the lack of tooling around it. For example afaik the official Mullvad client on linux just uses a firewall.

    2
  • sharing my simple wireguard kill-switch for Linux
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearXA
    xabadak
    5mo ago 100%

    How do you route all a host system's traffic through Gluetun? If you use routing tables, wouldn't it similarly be affected by TunnelVision? In which case you would still need a firewall on the host...

    Also, the host system likely makes network requests right after boot, before a Gluetun container has time to start. How do you make sure those don't leak?

    I am curious though, how you were able to route all host traffic through Gluetun. I know it can be used as a http/socks proxy, but I only know of ways to configure your browser to use that. What about other applications and system-level services? What about other kinds of traffic, like ssh?

    2
  • cross-posted from: https://lemmings.world/post/8926396 > In light of the recent [TunnelVision vulnerability](https://tunnelvisionbug.com/) I wanted to share a simple firewall that I wrote for wireguard VPNs. > > https://codeberg.org/xabadak/wg-lockdown > > If you use a fancy official VPN client from Mullvad, PIA, etc, you won't need this since most clients already have a kill switch built in (also called Lockdown Mode in Mullvad). This is if you use a barebones wireguard VPN like me, or if your VPN client has a poorly-designed kill switch (like NordVPN, more info [here](https://news.ycombinator.com/item?id=40280496)). > > A firewall *should* mitigate the vulnerability, though it does create a side-channel that can be exploited in extremely unlikely circumstances, so a better solution would be to use network namespaces (more info [here](https://news.ycombinator.com/item?id=40280296)). Unfortunately I'm a noob and I couldn't find any scripts or tools to do it that way.

    49
    11

    In light of the recent [TunnelVision vulnerability](https://tunnelvisionbug.com/) I wanted to share a simple firewall that I wrote for wireguard VPNs. https://codeberg.org/xabadak/wg-lockdown If you use a fancy official VPN client from Mullvad, PIA, etc, you won't need this since most clients already have a kill switch built in (also called Lockdown Mode in Mullvad). This is if you use a barebones wireguard VPN like me, or if your VPN client has a poorly-designed kill switch (like NordVPN, more info [here](https://news.ycombinator.com/item?id=40280496)). A firewall *should* mitigate the vulnerability, though it does create a side-channel that can be exploited in extremely unlikely circumstances, so a better solution would be to use network namespaces (more info [here](https://news.ycombinator.com/item?id=40280296)). Unfortunately I'm a noob and I couldn't find any scripts or tools to do it that way.

    69
    18