Vadim Smirnov

Forum Replies Created

Viewing 15 posts - 391 through 405 (of 1,476 total)
  • Author
    Posts
  • in reply to: “WIresock Client” and “Socksify Sample” #12085
    Vadim Smirnov
    Keymaster

      I don’t think I understand your question. If you want Wiresock VPN Client to tunnel all the applications over WireGuard tunnel, then just don’t specify AllowedApps parameter in the configuration file.

      Socksify sample serves a different task, it forwards the selected application via the SOCKS5 proxy server. I will consider making the background service based on the Socksify sample code.

       

      Vadim Smirnov
      Keymaster

        I have finally released v.1.0.48 of WireSock VPN Client with SOCKS5 support for WireGuard handshakes. This build supports username/password authentication. If you have a chance to test it, then please update me on how it works in your environment.

        Here is the short guide on setting up free SOCKS5 server with UDP ASSOCIATE support in Oracle Cloud: https://www.ntkernel.com/wireguard-and-socks5/

         

        in reply to: Wireguard and OpenVPN Nested Tunnel #12059
        Vadim Smirnov
        Keymaster

          I’ve just set a nested WireGuard tunnels setup to test and provide you with some examples. Regretfully, there is one problem, the last version of WireGuard for Windows I have tested nested wireguard/wiresock tunnels was v0.5, and it looks one of the more recent updates has broken this setup (internal handshake packet sent by wiresock can’t reach the destination).

          However, recently, I have added a new feature to Wiresock which allows sending a handshake packet through the SOCKS5 server. Please see the related post on bypassing Egypt’s WireGuard ban here. And surprisingly, this allows to resolve the issue, handshake packet is not recognized by stock Wireguard and reaches its destination.

          The Wireguard for Windows configuration (external tunnel):

          [Interface]
          PrivateKey = PRIVATE_KEY_HERE
          Address = 10.10.11.3/24
          DNS = 8.8.8.8, 1.1.1.1
          MTU = 1412
          
          [Peer]
          PublicKey = PUBLIC_KEY_HERE
          AllowedIPs = 0.0.0.0/0
          Endpoint = WIREGUARD_EXTERNAL_SERVER_IP:50812
          PersistentKeepalive = 25

          Wiresock VPN Client configuration(internal tunnel for Chrome browser only):

          [Interface]
          PrivateKey = PRIVATE_KEY_HERE
          Address = 10.66.66.2/32, fd42:42:42::2/128
          DNS = 8.8.8.8, 1.1.1.1
          MTU = 1332
          
          [Peer]
          PublicKey = PUBLIC_KEY_HERE
          AllowedIPs = 0.0.0.0/0, ::/0
          Endpoint = WIREGUARD_INTERNAL_SERVER_IP:50812
          AllowedApps = chrome
          DisallowedIPs = 192.168.1.0/24
          Socks5Proxy = SOCKS5_PROXY_ADDRESS:1080
          Socks5ProxyUsername = SOCKS5_USERNAME
          Socks5ProxyPassword = SOCKS5_PASSWORD

          SOCKS5 handshake feature is not released yet, but if you’re interested in testing it, then you can download binaries here. Just copy these over the installed ones in C:\Program Files\WireSock VPN Client\bin.

          in reply to: Wireguard and OpenVPN Nested Tunnel #12057
          Vadim Smirnov
          Keymaster

            I had not tested nested tunnels with Open VPN Client, but I have tested the official Wireguard VPN Client along with Wiresock VPN Client to organize nested VPN tunnels:

            WireSock VPN Client is compatible and can be used with official WireGuard for Windows to organize nested WireGuard tunnels completely on the client side. In such configuration, the official client organizes the external tunnel (to the first WireGuard Server instance) and WireSock VPN Client the internal one (to the second WireGuard Server instance). You only need to remember to adjust MTU parameter for the internal tunnel accordingly to avoid fragmentation and throughput degradation.

            However, I can’t see why it could not work a similar way with Open VPN Client… But please note to use the Wiresock VPN Client instead of the official Wireguard for Windows.

            in reply to: Windows Packet Filter 3.2.32 fail to install on windows 7 #12032
            Vadim Smirnov
            Keymaster

              I don’t have Windows 7 Enterprise X64 under hand, but I’ve tested 3.2.32 on Windows 7 x64 retail with all latest updates, and it works ok.

              However, there is one key difference in driver signing between 3.2.7 and 3.2.32:

              3.2.7 drivers for Windows 7 are signed using SHA-1 Code Signing certificate, while 3.2.32 with SHA-256 EV Code Signing certificate.

              Please note, that SHA-1 code signing certificates are no more available for ordering and the latest Windows Packet Filter version signed with SHA-1 Code Signing certificate was 3.2.29. You can get this version using the links below:

              Windows Packet Filter 3.2.29.1 x64.msi

              Windows Packet Filter 3.2.29.1 x86.msi

              Alternatively, you could install the required update from the list below to add SHA-256 support to your OS:

              Vadim Smirnov
              Keymaster

                Hi Dat,

                No, the driver won’t do packet fragmentation for you. If, after attaching extra headers, your packet size exceeds MTU (typically Internet MTU never exceeds 1514 bytes, in LAN jumbo frames can reach 9014 bytes size), then you have to fragment it into two INTERMEDIATE_BUFFER structures and inject two packets instead of one. However, I would recommend avoiding fragmentation (fragmented packets are often silently dropped by firewalls/routers) at all. For example, for TCP protocol, you could manipulate the TCP MSS option to limit the maximum packet size and thus reserve space for your extra headers.

                Hope it helps.
                Vadim

                in reply to: Ping not passing through #12026
                Vadim Smirnov
                Keymaster

                  Hi Hardoman,

                  This is the known disadvantage of proxy mode, which is limited to TCP and UDP protocols only. I will consider adding some sort of ICMP proxy in the future, but meanwhile if you need ICMP then you can switch gateway to the NAT mode.

                  Hope it helps,
                  Vadim

                  in reply to: _TRANSPORT_LAYER_FILTER #12015
                  Vadim Smirnov
                  Keymaster

                    Добавил, можете протестировать:

                    https://www.ntkernel.com/downloads/Windows Packet Filter 3.2.32.1 x64.msi
                    https://www.ntkernel.com/downloads/Windows Packet Filter 3.2.32.1 x86.msi

                    Определения для NDISAPI в ветке develop на github.

                    in reply to: WinPacketFilter – determine packet owner app #12012
                    Vadim Smirnov
                    Keymaster

                      You should consider one thing about GetExtendedTcpTable / GetExtendedUdpTable. These functions return you only connections available to the application (more precisely, to the user running the application). It is not a problem if you run as a service under LocalSystem account, but if you execute it under standard user account, you won’t see processes from other users (and services).

                      Vadim Smirnov
                      Keymaster

                        Thank you for testing and feedback. I will devote some time to review the changes and create the final build. Maybe I will also add one SOCKS5 authorization method for the consistency. As soon as it is ready, I would appreciate if you give it a try in your environment. If you find out any issues with the current version, then please let me know. Please don’t hesitate to e-mail me directly at vadim(at)ntkernel.com.

                        Vadim Smirnov
                        Keymaster

                          Logs are not representative, capture file for the tunnel is empty. Besides this, you could intersect with my tests stopping SOCKS proxy to simulate SOCKS server failure. Below is a slightly updated build, please give it a try. Also, please note that while you are not sending anything over the tunnel boringtun seems to sleep (I can’t see it generating any traffic), but when you start the tunneled application it immediately initiates the handshake and starts tunneling. So, after a pause, try to run something which is supposed to be tunneled.

                          https://1drv.ms/u/s!AqMWR3uDO7eagdpnzLlIM_14UmtIEA?e=bPDkgh

                          Vadim Smirnov
                          Keymaster

                            I’ve looked through the capture logs. The problem is not in keepalive packet. After some timeout, connection to SOCKS proxy is broken (probably ISP NAT removes by timeout) and handshakes can’t reach the destination.

                            The build below attempts to refresh SOCKS proxy connection after fist non-responded handshake.

                            https://1drv.ms/u/s!AqMWR3uDO7eagdpm7HQ_xTbjlZQKGw?e=vd6kfP

                            Vadim Smirnov
                            Keymaster

                              Yes, Keepalive packets were sent through the SOCKS proxy, and it caused some problems. Please test the build below:

                              https://1drv.ms/u/s!AqMWR3uDO7eagdployq7zTR7TJOIdA?e=tUgS7D

                              Normally, Handshakes are sent every two minutes, while Keepalive packets are sent if no other packets were sent after PersistentKeepalive interval.

                              Vadim Smirnov
                              Keymaster

                                Regretfully, #11993 has the same problem with the first handshake. Please test the one below, I hope I have fixed all places where it could come from:

                                https://1drv.ms/u/s!AqMWR3uDO7eagdpkWfB_aQsCvk66Tg?e=idzeGj

                                Vadim Smirnov
                                Keymaster

                                  Here is the build which sends only handshake over SOCKS5 but does not allow handshake to go out until SOCKS session is not ready.

                                  https://1drv.ms/u/s!AqMWR3uDO7eagdpiKKoUYwslX2XG_A?e=6COUAa

                                Viewing 15 posts - 391 through 405 (of 1,476 total)