4
I Use This!
Very Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Dec 02, 2024 — Dec 02, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Modified "Npcap Loopback Adapter"'s MTU from default 1500 to 65536 value used by Linux. More... over 10 years ago
Fixed the bug that WSK code fails to init if it is run without Administrator right, the effect is Npcap loopback adapter can't be opened. More... over 10 years ago
Improved the trace message for WSK init code. More... over 10 years ago
Improved the error trace message for Winsock Kernel socket operations. More... over 10 years ago
Updated Npcap version string to 0.04. More... over 10 years ago
Fixed the bug that Npcap didn't finish IRP when opening adapter fails, this perhaps causes some issues, like the IRQL_NOT_LESS_OR_EQUAL BSoD. More... over 10 years ago
Improved the code format for Read.c. More... over 10 years ago
Fixed the bug reported by Jim Young that Npcap fails to capture all chargen protocol packets. This is because Npcap only reads the first NetBuffer data, while chargen packets store data in multiple NetBuffer structs. More... over 10 years ago
Fixed the bug that Npcap loopback adapter fails to use capture filter when capturing, no packets return if using like "icmp", this is because only first MDL is examined, while loopback packets have at least two MDLs. More... over 10 years ago
Fixed the sign local time error for "npcap" project files. More... over 10 years ago
Added DBG macro for Npcap driver project Debug mode, to help generate trace messages in DebugView. More... over 10 years ago
Fixed a small coding error that occurs in compiling Npcap driver using debug mode. More... over 10 years ago
Fixed the SYSTEM_SERVICE_EXCEPTION BSoD caused by NdisFOidRequest call, this may help to fix the BAD_POOL_CALLER BSoD (I said "may" because this BSoD can't be reproduced). More... over 10 years ago
Fixed the sign local time error and HAVE_WFP_LOOPBACK_SUPPORT macro error. More... over 10 years ago
Rolled back to old resource free code, as IRQL_NOT_LESS_OR_EQUAL and SYSTEM_SERVICE_EXCEPTION BSoDs are not resolved. More... over 10 years ago
Fixed the bug that loopback packets sent by Npcap is malformed. More... over 10 years ago
Fixed the issue that Npcap fails to start the service. More... over 10 years ago
Relieved IRQL_NOT_LESS_OR_EQUAL BSoD to some extent. More... over 10 years ago
Changed Packet.dll, NPFInstall.exe and NPcapHelper.exe projects to static link mode, because some systems (like Win10 RTM) lacks VC 2010 redist package. More... over 10 years ago
Updated the README and Build.bat script. More... over 10 years ago
Added loopback packet sending feature for Npcap, together with the previous loopback packet capturing, now Nmap can use Npcap to detect the localhost machine! More... over 10 years ago
Improved the code format. More... over 10 years ago
Do some translation work from NetBufferList to memory data for the WSK code, as Npcap handles packets in NetBufferList in most conditions. More... over 10 years ago
Improved the code format. More... over 10 years ago
Integrated WSKTest's init and free code into Npcap driver. More... over 10 years ago
Improved the code format. More... over 10 years ago
Improved the variable names. More... over 10 years ago
Npcap driver can re-inject the loopback packets sent by Winsock Kernel into TCP/IP stack now. Npcap identifies them by whether IPv4 protocol field (IPv6 next header field) equals to IPPROTO_NPCAP_LOOPBACK(250), if identified, Npcap removes the outer IP header, and re-inject the other part into Network Layer sending path using WFP. More... over 10 years ago
Add WFP Injection Handle init and free code to Npcap driver, used for sending loopback packets. More... over 10 years ago
Fixed the bug reported by Jim Young, when you run "ping -t -l 65500 127.0.0.1" against Npcap, you will get "Malformed Packet" in Wireshark. This is because the packet read function NPF_TapExForEachOpen didn't copy the 2nd MDL data if the data has crossed the buffer boundary. More... over 10 years ago