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
PS> Get-WmiObject Win32_NetworkAdapter | select Name, DeviceID
Name DeviceID
---- --------
WAN Miniport (SSTP) 0
[..stuff..]
Teredo Tunneling Pseudo-Interface 11
Npcap Loopback Adapter 12
Realtek PCIe GBE Family Controller 13
TRENDnet N150 Wireless PCI Adapter 14
Carte Microsoft 6to4 15
followed by a
# 12 is the DeviceID of the Npcap Loopback Adapter. The NetworkCard associated to N is N+1
PS> $key = "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\" + (12 + 1)
PS > Get-ItemProperty -Path $key | select ServiceName
ServiceName
-----------
{29D40EEE-C86A-44BA-82DB-39644596E23D}
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.
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 * | flsee 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.