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!

      • lemmyvore
        link
        fedilink
        English
        18 months ago

        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.

        • @[email protected]OP
          link
          fedilink
          English
          18 months ago

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

          • Sauce
            link
            fedilink
            English
            38 months ago

            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

            • @[email protected]OP
              link
              fedilink
              English
              18 months ago

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

              • Sauce
                link
                fedilink
                English
                28 months ago

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

                • @[email protected]OP
                  link
                  fedilink
                  English
                  18 months ago

                  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