legongju.com
我们一直在努力
2025-01-11 01:51 | 星期六

能否用C++捕获ICMP数据包

是的,你可以使用C++来捕获ICMP数据包

#include
#include 
#include 
#include 

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

未经允许不得转载 » 本文链接:https://www.legongju.com/article/93899.html

相关推荐

  • c#如何获取当前程序的路径

    c#如何获取当前程序的路径

    在C#中,你可以使用System.IO.Path和System.Reflection命名空间来获取当前程序的路径。下面是一个示例代码:
    using System;
    using System.IO;
    us...

  • c#中如何调用python

    c#中如何调用python

    在C#中调用Python脚本,可以使用Pythonnet库(Python for .NET)或者IronPython库。这里我将分别介绍这两种方法。 使用Pythonnet库(Python for .NET): 首先,...

  • c#封装的步骤是什么

    c#封装的步骤是什么

    C# 封装主要包括以下几个步骤: 定义类(Class):创建一个新的类,用于存放需要封装的属性和方法。类是面向对象编程中的基本单位,它将数据(属性)和操作数据的...

  • c#字符串如何去重

    c#字符串如何去重

    在C#中,可以使用LINQ(Language Integrated Query)来实现字符串去重。下面是一个示例代码:
    using System;
    using System.Linq; class Program
    ...

  • C++ ICMP消息处理技巧有哪些

    C++ ICMP消息处理技巧有哪些

    在 C++ 中处理 ICMP(Internet Control Message Protocol)消息可以用于网络诊断、ping 实现等 使用原始套接字:在 C++ 中,你需要使用原始套接字来发送和接收 I...

  • 如何在C++里使用ICMP进行网络诊断

    如何在C++里使用ICMP进行网络诊断

    在C++中,使用ICMP(Internet Control Message Protocol)进行网络诊断通常涉及到创建原始套接字并发送和接收ICMP数据包
    #include
    #include #include ...

  • C++ Playground对于初学者有哪些帮助

    C++ Playground对于初学者有哪些帮助

    C++ Playground是一个专为C++语言设计的在线编程环境,它为初学者提供了许多帮助,包括: 快速入门:通过提供交互式的编程环境,C++ Playground使初学者能够立即...

  • 如何在C++ Playground中共享代码

    如何在C++ Playground中共享代码

    C++ Playground 是一个在线编程环境,支持 C++ 代码的编写、运行和调试 首先,访问 C++ Playground 网站:https://www.mycompiler.io/new/cpp
    在代码编辑器...