Spyke

How do you mask Wireguard traffic?

ChatGPT led me to tunsafe however the project seems to be abandoned?

I'm trying to find ways to convert wireguard traffic into plain HTTPS so as to not trigger some advanced DPI. So far, I have come across udp2raw and updtunnel which convert the traffic to TCP, but AFAIK the SSL used in Wireguard triggers DPIs.

Does anyone have a workaround? Thanks!


Everyone, there seems to be a way go achieve this:

Wireguard (change port to 443) + udp2raw or udptunnel to convert packets to TCP + stunnel (configured on both client and server - used by OpenVPN to encapsulate traffic in TLS).

This is basically what OpenVPN does, and theoretically this should do OK. I haven't tested it however, so if you have, please let us know!

View original on lemmy.world
lemmyvorereply
feddit.nl

Keep in mind there's another very easy method to mess with wg traffic: breaking the connection once every 30 seconds or so. This won't affect the vast majority of real HTTPS connections but will ruin long lived connections like ssh or streaming.

1
lemmy.world

Hi, is there a point to doing this? My ISP/any advanced DPI will still know that I'm using Wireguard

1
Saucereply
lemmy.world

They are talking about how whoever or whatever you are trying to get around can still mess with your wg tunnels even if you are masking them as https

3
lemmy.world

How can someone else mess with the timeout of my wg tunnel if I mask them as HTTPS traffic?

1
Saucereply
lemmy.world

They can break the session every 30 seconds, which would be fine for a normal web session but mess with your wg tunnel

2

Would breaking a TCP session every 30 seconds be OK for something like video streaming/content browsing?

I wonder if I can automate the breaking and forming of session on clients. Hopefully Android has something that will let me do this, I'm sure I can figure something out on Linux

1
lemdro.id

Please update the post if you found solution to this. Also check this out.

8

I have found 3 different possible solutions to the problem but not sure if anyone in the community has done this yet. Thanks for the link.

2

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer LettersMore Letters
HTTPHypertext Transfer Protocol, the Web
HTTPSHTTP over SSL
IPInternet Protocol
SSHSecure Shell for remote terminal access
SSLSecure Sockets Layer, for transparent encryption
TCPTransmission Control Protocol, most often over IP
TLSTransport Layer Security, supersedes SSL
UDPUser Datagram Protocol, for real-time communications
VPNVirtual Private Network

7 acronyms in this thread; the most compressed thread commented on today has 6 acronyms.

[Thread #253 for this sub, first seen 30th Oct 2023, 16:40] [FAQ] [Full list] [Contact] [Source code]

0
lemmy.world

True, but I just figured that it is possible to run Wireguard with stunnel, the latter is used by OpenVPN to wrap packets in TLS and masquerade as HTTPS traffic. If I can do that, and convert UDP packets to TCP with the software I mentioned in the post (changing the port is trivial), then I could achieve what I want!

3
Jason2357reply
lemmy.ca

I used stunnel years ago to tunnel both openVPN and SSH traffic and it worked flawlessly. Looks just like https web traffic to dpi software. Beware though, that long open connections can also set off flags, so don't keep connection's open permanently.

2

I see. Thanks, good to know. I'll see if I can automate opening and closing connections. However, I do think that a lot of applications (especially chat/video applications) maintain fairly long connections these days: long livestreams on YT, discord client, lemmy, Instagram etc. Basically, if you're consuming content online, there's a good chance that your device might keep the connection going.

With that said, it's important to blend in: I wonder if I can automate the disconnect-connect process on Android

1

I agree. It sounds like this Rube Goldberg contraption would basically sacrifice all advantages of WireGuard.

At that point you might as well fall back to OpenVPN and at least get the reliability of a proven mature solution.

3
lemmy.ca

Wireguard is e2e encrypted, no middleman can inspect the packets without the private keys.

-13
lemmy.world

I'm aware that it is encrypted, however DPIs can pick out Wireguard traffic (due to the behaviour of SSL used in the protocol) and can identify/deny Wireguard traffic. I don't want that to happen. OpenVPN has a way to mask its traffic, I'm trying to see if anyone has done anything of the sort with Wireguard

19
lungdartreply
lemmy.ca

You can try putting it on pretty 443 or another tls port. It's not a perfect solution but it could help for your specific setup.

-7
TCB13reply
lemmy.world

Yes this is a good way to baypass a lot of commercial firewalls.

-2
TCB13reply
lemmy.world

I know it doesn't do shit against DPI, but you would be amazed at the amount of firewalls in corporate networks, hotels and public places that'll be able to bypass by just running WG on port 443 or 80.

-2

You reached the end