-
Notifications
You must be signed in to change notification settings - Fork 2.5k
[Npcap] LoopbackInterface not correctly registered on Windows 7 #1368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I need to investigate this, but here are some related issues: #1284, #653. We have had requests from users and paying licensees to both make the Loopback Adapter show up in these API functions and to be hidden from ordinary users. I am not sure how much of these issues are due to ordinary behavior of the Microsoft KM-TEST loopback adapter that the Npcap Loopback Adapter is built on or how much is due to the additional keywords we set in an attempt to be very clear that this is a software-only loopback adapter that does not have an IP configuration of its own. |
About #1284:
Thank you for looking into it |
Ok, I have some findings, which I came up with by comparing Windows 7 (affected) and Windows 10 (unaffected):
I believe, but will have to check, that the Windows 7 values for these additional keywords are the ones we are trying to set, but that Windows 10 has reverted them to default values in every case except |
We believe this issue was resolved in Npcap 0.99-r8 and 0.99-r9. @gpotter2 have you tried these releases, and do they solve the issue for you? |
@dmiller-nmap Looks fixed to me ! Thanks for the support |
Hello,
I have ran several tests on a Windows 7 machine, with a fresh install of Npcap 0.99-r7 (there never was a Npcap before). I installed it with default options + support for raw 802.11
In scapy, we
need(now uses the DLLs directly) needed at some point to get the GUID of all interfaces through Microsoft Powershell.Issue:
The interface GUID of the loopback interface is missing from the result of
Get-WmiObject Win32_NetworkAdapter | select * | fl
see https://pastebin.com/qRVp8USX (the npcap interface + one working interface)
I'm able to fallback with an ugly
followed by a
But I don't understand why this value would be missing only on the Npcap Loopback Interface, and not the others :/
Side note
On Windows 10, we use
Get-NetAdapter | select InterfaceDescription, InterfaceGuid
(simplified), which does not have this issue.The text was updated successfully, but these errors were encountered: