中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

能否用C++捕獲ICMP數據包

c++
小樊
84
2024-09-10 17:39:55
欄目: 編程語言

是的,你可以使用C++來捕獲ICMP數據包

#include<iostream>
#include <pcap.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>

void processPacket(u_char *args, const struct pcap_pkthdr *header, const u_char *packet) {
    struct ip *ipHeader = (struct ip *)(packet + sizeof(struct ether_header));
    struct icmp *icmpHeader = (struct icmp *)(packet + sizeof(struct ether_header) + (ipHeader->ip_hl << 2));

    std::cout << "ICMP packet received: type=" << (int)icmpHeader->icmp_type << ", code=" << (int)icmpHeader->icmp_code<< std::endl;
}

int main() {
    char *device = pcap_lookupdev(nullptr);
    if (device == nullptr) {
        std::cerr << "Error finding device"<< std::endl;
        return 1;
    }

    char errorBuffer[PCAP_ERRBUF_SIZE];
    pcap_t *handle = pcap_open_live(device, BUFSIZ, 1, 1000, errorBuffer);
    if (handle == nullptr) {
        std::cerr << "Error opening device: "<< errorBuffer<< std::endl;
        return 1;
    }

    struct bpf_program filter;
    if (pcap_compile(handle, &filter, "icmp", 0, PCAP_NETMASK_UNKNOWN) == -1) {
        std::cerr << "Error compiling filter: " << pcap_geterr(handle)<< std::endl;
        return 1;
    }

    if (pcap_setfilter(handle, &filter) == -1) {
        std::cerr << "Error setting filter: " << pcap_geterr(handle)<< std::endl;
        return 1;
    }

    pcap_loop(handle, -1, processPacket, nullptr);

    pcap_freecode(&filter);
    pcap_close(handle);

    return 0;
}

這個示例程序首先查找一個網絡設備(如eth0),然后使用pcap_open_live函數打開該設備。接下來,它編譯并設置一個過濾器,以便只捕獲ICMP數據包。最后,它使用pcap_loop函數循環捕獲數據包,并在每次捕獲到ICMP數據包時調用processPacket回調函數。

請注意,這個示例程序需要root權限才能運行,因為捕獲數據包通常需要訪問受保護的系統資源。

要編譯此程序,你需要安裝libpcap庫,并在編譯命令中鏈接它。例如,在Linux上,你可以使用以下命令編譯程序:

g++ -o capture_icmp capture_icmp.cpp -lpcap

然后,你可以使用以下命令運行程序:

sudo ./capture_icmp

0
靖江市| 江山市| 淮北市| 拉萨市| 富蕴县| 交城县| 武鸣县| 桐庐县| 江门市| 庄河市| 义马市| 曲周县| 大新县| 东乌| 宿松县| 云浮市| 鸡泽县| 固镇县| 渝中区| 鄂托克旗| 昌图县| 阜南县| 奉节县| 刚察县| 汉沽区| 湾仔区| 淳化县| 天柱县| 资源县| 枣庄市| 嫩江县| 泾源县| 岑巩县| 锦州市| 永胜县| 厦门市| 从江县| 丽水市| 广南县| 浦县| 铜山县|