为什么我的程序在打开网络设备时遇到问题
Why is my program having problems opening a Network Device
我查看了 libtins 并在示例中找到了 ARP Monitor 示例。
示例代码在这里:
#include <tins/tins.h>
#include <map>
#include <iostream>
#include <functional>
using std::cout;
using std::endl;
using std::map;
using std::bind;
using namespace Tins;
class arp_monitor {
public:
void run(Sniffer& sniffer);
private:
bool callback(const PDU& pdu);
map<IPv4Address, HWAddress<6>> addresses;
};
void arp_monitor::run(Sniffer& sniffer) {
sniffer.sniff_loop(
bind(
&arp_monitor::callback,
this,
std::placeholders::_1
)
);
}
bool arp_monitor::callback(const PDU& pdu) {
// Retrieve the ARP layer
const ARP& arp = pdu.rfind_pdu<ARP>();
// Is it an ARP reply?
if (arp.opcode() == ARP::REPLY) {
// Let's check if there's already an entry for this address
auto iter = addresses.find(arp.sender_ip_addr());
if (iter == addresses.end()) {
// We haven't seen this address. Save it.
addresses.insert({ arp.sender_ip_addr(), arp.sender_hw_addr()});
cout << "[INFO] " << arp.sender_ip_addr() << " is at "
<< arp.sender_hw_addr() << std::endl;
}
else {
// We've seen this address. If it's not the same HW address, inform it
if (arp.sender_hw_addr() != iter->second) {
cout << "[WARNING] " << arp.sender_ip_addr() << " is at "
<< iter->second << " but also at " << arp.sender_hw_addr()
<< endl;
}
}
}
return true;
}
int main(int argc, char* argv[]) {
if(argc != 2) {
cout << "Usage: " <<* argv << " <interface>" << endl;
return 1;
}
arp_monitor monitor;
// Sniffer configuration
SnifferConfiguration config;
config.set_promisc_mode(true);
config.set_filter("arp");
try {
// Sniff on the provided interface in promiscuous mode
Sniffer sniffer(argv[1], config);
// Only capture arp packets
monitor.run(sniffer);
}
catch (std::exception& ex) {
std::cerr << "Error: " << ex.what() << std::endl;
}
}
我运行这个代码在这里:
myprogram.exe eth0
结果是:
Error: Error opening adapter: The System could not find the given Device. (20)
上面词的定义:
eth0: My Network Device
libtins: high-level, multiplatform C++ network packet sniffing and crafting library
ARP: Address Resolution Protocol
I ran it at only one User named "Shadow" on Windows
Image of the Users Directory
根据 te OP 上传的图片,我只能得出结论,我对他的看法是正确的 运行 Windows 上的程序,所以我只是从 libtins's documentation 复制:
为了在 Windows 上捕获数据包,您可以首先列出所有网络接口。您可以使用 NetworkInterface class:
轻松做到这一点
// First fetch all network interfaces
vector<NetworkInterface> interfaces = NetworkInterface::all();
// Now iterate them
for (const NetworkInterface& iface : interfaces) {
// First print the name (GUID)
cout << "Interface name: " << iface.name();
// Now print the friendly name, a wstring that will contain something like
// "Local Area Connection 2"
wcout << " (" << iface.friendly_name() << ")" << endl;
}
该小代码片段应提供如下输出:
Interface name: {6527cc7d-c647-4986-ac10-7784dc1f2439} (Local Area Connection 1)
Interface name: {309d733f-79bb-41ef-aaec-8a7b83d2adcf} (Local Area Connection 2)
Interface name: {55ab969f-80df-4d51-8130-291d54a752a3} (Local Area Connection 3)
这可能足以让您识别出您要使用的界面。您还可以求助于获取默认接口,这很可能是您要使用的接口,或者显示每个接口的 IP 地址,直到您认出它们:
// Get the default interface (where the default gateway route is)
NetworkInterface iface = NetworkInterface::default_interface();
// Print the name and the IP address
cout << "Default interface: " << iface.name()
<< " (" << iface.addresses().ip_addr() << ")" << endl;
我查看了 libtins 并在示例中找到了 ARP Monitor 示例。 示例代码在这里:
#include <tins/tins.h>
#include <map>
#include <iostream>
#include <functional>
using std::cout;
using std::endl;
using std::map;
using std::bind;
using namespace Tins;
class arp_monitor {
public:
void run(Sniffer& sniffer);
private:
bool callback(const PDU& pdu);
map<IPv4Address, HWAddress<6>> addresses;
};
void arp_monitor::run(Sniffer& sniffer) {
sniffer.sniff_loop(
bind(
&arp_monitor::callback,
this,
std::placeholders::_1
)
);
}
bool arp_monitor::callback(const PDU& pdu) {
// Retrieve the ARP layer
const ARP& arp = pdu.rfind_pdu<ARP>();
// Is it an ARP reply?
if (arp.opcode() == ARP::REPLY) {
// Let's check if there's already an entry for this address
auto iter = addresses.find(arp.sender_ip_addr());
if (iter == addresses.end()) {
// We haven't seen this address. Save it.
addresses.insert({ arp.sender_ip_addr(), arp.sender_hw_addr()});
cout << "[INFO] " << arp.sender_ip_addr() << " is at "
<< arp.sender_hw_addr() << std::endl;
}
else {
// We've seen this address. If it's not the same HW address, inform it
if (arp.sender_hw_addr() != iter->second) {
cout << "[WARNING] " << arp.sender_ip_addr() << " is at "
<< iter->second << " but also at " << arp.sender_hw_addr()
<< endl;
}
}
}
return true;
}
int main(int argc, char* argv[]) {
if(argc != 2) {
cout << "Usage: " <<* argv << " <interface>" << endl;
return 1;
}
arp_monitor monitor;
// Sniffer configuration
SnifferConfiguration config;
config.set_promisc_mode(true);
config.set_filter("arp");
try {
// Sniff on the provided interface in promiscuous mode
Sniffer sniffer(argv[1], config);
// Only capture arp packets
monitor.run(sniffer);
}
catch (std::exception& ex) {
std::cerr << "Error: " << ex.what() << std::endl;
}
}
我运行这个代码在这里:
myprogram.exe eth0
结果是:
Error: Error opening adapter: The System could not find the given Device. (20)
上面词的定义:
eth0: My Network Device
libtins: high-level, multiplatform C++ network packet sniffing and crafting library
ARP: Address Resolution Protocol
I ran it at only one User named "Shadow" on Windows
Image of the Users Directory
根据 te OP 上传的图片,我只能得出结论,我对他的看法是正确的 运行 Windows 上的程序,所以我只是从 libtins's documentation 复制:
为了在 Windows 上捕获数据包,您可以首先列出所有网络接口。您可以使用 NetworkInterface class:
轻松做到这一点// First fetch all network interfaces
vector<NetworkInterface> interfaces = NetworkInterface::all();
// Now iterate them
for (const NetworkInterface& iface : interfaces) {
// First print the name (GUID)
cout << "Interface name: " << iface.name();
// Now print the friendly name, a wstring that will contain something like
// "Local Area Connection 2"
wcout << " (" << iface.friendly_name() << ")" << endl;
}
该小代码片段应提供如下输出:
Interface name: {6527cc7d-c647-4986-ac10-7784dc1f2439} (Local Area Connection 1)
Interface name: {309d733f-79bb-41ef-aaec-8a7b83d2adcf} (Local Area Connection 2)
Interface name: {55ab969f-80df-4d51-8130-291d54a752a3} (Local Area Connection 3)
这可能足以让您识别出您要使用的界面。您还可以求助于获取默认接口,这很可能是您要使用的接口,或者显示每个接口的 IP 地址,直到您认出它们:
// Get the default interface (where the default gateway route is)
NetworkInterface iface = NetworkInterface::default_interface();
// Print the name and the IP address
cout << "Default interface: " << iface.name()
<< " (" << iface.addresses().ip_addr() << ")" << endl;