c-使用混杂模式



我在同一局域网中连接了3台笔记本电脑。

lap-1:192.168.1.2
lap-2:192.168.1.3
lap-3:192.168.1.4

我将lap-1作为服务器,并在9333端口上侦听。lap-2充当客户端。使用netcat,我将数据从lap2发送到lap1。我可以在lap1中使用pcap捕获数据包。我已经使用sudo ifconfig eth0 promisc打开了混杂模式。在pcap_live_open方法中,我还设置了混杂模式标志。

然后我关闭了混杂模式,也关闭了pcap_live_open函数。尽管如此,我还是能够捕获数据包。

我在谷歌上搜索了混杂模式,我可以推断,如果设备以混杂模式打开接口,它将能够捕获连接到该网络的所有数据包。

因此,考虑到这一点,我将lap-3作为服务器,而lap-2仍然作为客户端。我遵循了与上述相同的程序。我在lap-1中运行可执行的pcap,希望能够捕获在lap-3和lap-2之间传输的数据包,但在lap-1上运行的pcap在混乱模式下无法做到这一点。所有3圈都连接到同一网络。

有人能用简单的场景来启发我滥交模式的使用吗?

这是我的pcap代码:29988是9333的反向(互换),我只是在寻找。

#include <pcap/pcap.h>
#include <stdint.h>
const u_char *packet;  
int main()   
{
   char *dev = "eth0";
   pcap_t *handle;        
   int j=0;
   char errbuf[PCAP_ERRBUF_SIZE];  
   struct bpf_program fp;    
   bpf_u_int32 mask;      
   bpf_u_int32 net;    
   struct pcap_pkthdr header;   
   uint8_t *ip_header_len;
   uint16_t ip_header_len_val;
   uint16_t *port;
   /* Find the properties for the device */
   while (pcap_lookupnet(dev, &net, &mask, errbuf) == -1) {
      printf("Couldn't get netmask for device %s: %sn", dev, errbuf);
      net = 0;
      mask = 0;
   }
   printf("lookedup pcap device: %sn", dev);
   /* Open the session in promiscuous mode */
   handle = pcap_open_live(dev, BUFSIZ,1,0, errbuf);
   if (handle == NULL) {
      printf("Couldn't open device %s: %sn", dev, errbuf);
   }
   /* Compile and apply the filter */
   if (pcap_compile(handle, &fp, filter_exp, 0, net) == -1) {
      printf("Couldn't parse filter %s: %sn", filter_exp, pcap_geterr(handle));
      pcap_close(handle);
   }
   /*     if (pcap_setfilter(handle, &fp) == -1) {
        printf("Couldn't install filter %s: %s", filter_exp, pcap_geterr(handle));
        return(-1);
    }
    */ 
   /* Grab a packet */
   while ((packet = pcap_next(handle, &header)) != NULL)
   {
      uint16_t *data_size;
      uint16_t size,total_len_val,tcp_header_len_val; 
      char tdata[128];     
      uint8_t *data,*tcp_header_len;
      uint16_t *total_len;
      //ip_proto = (uint8_t *)&packet[9];
      ip_header_len = (uint8_t *)&packet[14];
      ip_header_len_val = (*ip_header_len) & 0x0F;
      ip_header_len_val = ip_header_len_val*4;
      // printf("IP header len val:%dn",ip_header_len_val);
      port = (uint16_t *)&packet[14+ip_header_len_val+2];
      //printf("port:%dn",*port);
      total_len = (uint16_t *)&packet[14+2];
      total_len_val = ((*total_len) >> 8) & 0x00FF;
      total_len_val = total_len_val + (((*total_len) << 8) & 0xFF00);
      //total_len_val=*total_len;
      // printf("tot len val:%dn",total_len_val);
      tcp_header_len = (uint8_t *)&packet[14+ip_header_len_val+12];
      tcp_header_len_val = (*tcp_header_len) & 0xF0;
      tcp_header_len_val = tcp_header_len_val>>4;
      tcp_header_len_val = tcp_header_len_val * 4;
      // printf("tcp header len val:%dn",tcp_header_len_val);
      size = (total_len_val- ip_header_len_val) - tcp_header_len_val;

      data = (uint8_t *)&packet[14+ip_header_len_val+tcp_header_len_val];
      memset(tdata,0,128);
      mempcpy(tdata,data,size);
      tdata[size]='';
      if((*port)==29988)
      {       
         printf("Data Packet:%sn",tdata);
      }
   }
}

我认为,当你说它们都在同一个网络上时,你的意思是它们连接到同一个以太网交换机。该交换机将只向laptop1发送目的地为laptop1的数据。在过去,使用以太网集线器很常见,然后所有流量都流向所有连接的设备,但现在交换机非常便宜,集线器也不再常见。如果你能找到一个集线器,那么你可以尝试一下,但否则你只能看到流向你设备的流量。

正如Brad所提到的,路由器知道目标设备连接在哪个端口,所以它只在那里发送数据包。如果你想尝试一下,你可以使用VirtualBox或VMware,并在虚拟网络中连接机器。

相关内容

  • 没有找到相关文章

最新更新