Divert icon indicating copy to clipboard operation
Divert copied to clipboard

WinDivert: Windows Packet Divert

Results 44 Divert issues
Sort by recently updated
recently updated
newest added

I am looking for a new sponsor for driver signing. The high-level requirements are: - Willing to sign new releases of the `WinDivert32.sys` and `WinDivert64.sys` driver (probably about 1-2 releases...

- Hardware checksum offload is enabled - Running the passthru.c example compiled locally - Client and server running locally are sending packets to/from each other (loopback). When passthru is running,...

![askbug](https://user-images.githubusercontent.com/100284091/155312359-1fa8cc06-1762-4c26-bbd6-9fe70eac40d7.png) this is my app's stack. My app hang when call WinDivertClose: if (m_hSocketMon && m_hSocketMon != INVALID_HANDLE_VALUE) { WinDivertClose(m_hSocketMon); // hang here } after run above codes, my app...

Hey, Thanks for this great project, doc, code, examples and ready-to-use signed driver release. I needed something to selectively redirect traffic from an IP to a different port than the...

According to the documentation for windivert 2.2 at this link https://www.reqrypt.org/windivert-doc.html#divert_address, The WinDivertAddress struct uses a lot of UINT64 variables. However, in the github repo at https://github.com/basil00/Divert/blob/master/include/windivert.h, it shows a...

Base on socketdump.c, i set filter like "outbound and !loopback". It seems like filter not effective because i still receive loopback event. > CLOSE pid=17796 program=msedge.exe endpoint=1208670 parent=1208662 protocol=TCP local=[127.0.0.1]:51128...

Please, create an arm64 version that works with ms surface pro x

Running WinDivert and using filter `inbound and tcp.Syn` on network layer. I call `WinDivertRecvEx` and `WinDivertSendEx` to pass packets on through - very simple code, nothing fancy, just testing WinDivert...