我正在尝试使用C ++的libtins库,并不断遇到基本错误。
这是我的代码:
#define TINS_STATIC
#define WIN32
#include <iostream>
#include <tins/tins.h>
using namespace Tins;
int main(void) {
NetworkInterface iface = NetworkInterface::default_interface();
Sniffer sniffer(iface.name());
//more code below
}
在运行时出现以下错误:
Exception thrown at 0x00007FFD80F7DC9A (ntdll.dll) in test.exe: 0xC0000008: An invalid handle was specified.
我的默认网络接口是“以太网2”。当我列出所有接口时,脂蛋白可以成功检测到这一点。
{07C8C0D2-A2FC-4B91-9875-A8301682EF7C} (Ethernet 2)
我尝试手动输入如下接口名称:
Sniffer sniffer("\\Device\\NPF_{07C8C0D2-A2FC-4B91-9875-A8301682EF7C}");
但是在运行时出现此错误:
Exception thrown at 0x00007FFD7D2EA388 in test.exe: Microsoft C++ exception: Tins::pcap_error at memory location 0x000000543FCFF790.
Unhandled exception at 0x00007FFD7D2EA388 in test.exe: Microsoft C++ exception: Tins::pcap_error at memory location 0x000000543FCFF790.
我在做什么错?它与我的网络配置有关吗?我在使用预构建的64位libtins库的Windows 10计算机上。 Wireshark可以毫无问题地嗅探界面。
答案 0 :(得分:0)
我怀疑您的接口名称是\\Device\\NPF_{07C8C0D2-A2FC-4B91-9875-A8301682EF7C}
。据我所知,由于您的接口是以太网2,因此您应该将eth2
传递给Sniffer
对象。
以下对我来说很完美:
SnifferConfiguration config;
config.set_promisc_mode(true);
config.set_filter("udp and (dst port 53 or src port 53)");
Sniffer sniffer("wlp9s0", config);
sniffer.sniff_loop(callback);