gpt4 book ai didi

c++ - pcap_set_rfmon 不起作用?

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:20:22 24 4
gpt4 key购买 nike

我正在尝试将我的设备设置为监控模式,我知道它能够在监控模式下执行“iwconfig wlan0 模式监控”工作,我运行我的代码并且我可以从任何地方捕获数据包。

问题是,在 libpcap 中,它根本无法将我的设备设置为监控模式(没有输入上述命令行)。在我手动连接到接入点之前,我无法捕获任何数据包。

       pcap_t *handler = pcap_create("wlan0",errbuff);
if(pcap_set_rfmon(handler,1)==0 )
{
std::cout << "monitor mode enabled" << std::endl;
}
handler=pcap_open_live ("wlan0", 2048,0,512,errbuff);
int status = pcap_activate(handler); //it returns 0 here.

这是代码问题还是 pcap 库问题?有人成功地将他们的设备设置为监控模式而不使用命令行吗?顺便说一句,我使用的是 Realtek2500。

最佳答案

您不应该在同一代码中使用 pcap_open_live pcap_create/pcap_activate。尝试做

pcap_t *handler = pcap_create("wlan0",errbuff);
if (handler == NULL)
{
std::cerr << "pcap_create failed: " << errbuf << std::endl;
return; // or exit or return an error code or something
}
if(pcap_set_rfmon(handler,1)==0 )
{
std::cout << "monitor mode enabled" << std::endl;
}
pcap_set_snaplen(handler, 2048); // Set the snapshot length to 2048
pcap_set_promisc(handler, 0); // Turn promiscuous mode off
pcap_set_timeout(handler, 512); // Set the timeout to 512 milliseconds
int status = pcap_activate(handler);

当然,还要检查 status 的值。

关于c++ - pcap_set_rfmon 不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4516436/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com