- 1、本文档共11页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
发送arp包
代码来自busybox,函数询问TEST_IP的mac地址。read_interface函数通过ioctl来获取接口interface相关信息,arpping用于发送arp数据包。也可以使用s = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ARP));则地址则变成了struct sockaddr_ll addr; 在arpping中调用以下函数,则也可以发送# include unistd. h # include errno . h # include netdb. h # include signal . h # include sys/ socket . h # include sys/ poll. h # include sys/ ioctl. h # include netinet/ if_ether. h # include net/ if_arp. h # include netinet/ udp. h # include netinet/ ip. h # include stdio. h # include stdarg. h # include net/ if . h enum { ARP_MSG_SIZE = 0x2a} ; char * strncpy_IFNAMSIZ( char * dst, const char * src) { # ifndef IFNAMSIZ enum { IFNAMSIZ = 16 } ; # endif return strncpy ( dst, src, IFNAMSIZ) ; } struct arpMsg { /* Ethernet header */ uint8_t h_dest[ 6] ; /* 00 destination ether addr */ uint8_t h_source[ 6] ; /* 06 source ether addr */ uint16_t h_proto; /* 0c packet type ID field */ /* ARP packet */ uint16_t htype; /* 0e hardware type (must be ARPHRD_ETHER) */ uint16_t ptype; /* 10 protocol type (must be ETH_P_IP) */ uint8_t hlen; /* 12 hardware address length (must be 6) */ uint8_t plen; /* 13 protocol address length (must be 4) */ uint16_t operation; /* 14 ARP opcode */ uint8_t sHaddr[ 6] ; /* 16 senders hardware address */ uint8_t sInaddr[ 4] ; /* 1c senders IP address */ uint8_t tHaddr[ 6] ; /* 20 targets hardware address */ uint8_t tInaddr[ 4] ; /* 26 targets IP address */ uint8_t pad[ 18] ; /* 2a pad for min. ethernet payload (60 bytes) */ } PACKED; const int const_int_1 = 1; int setsockopt_broadcast( int fd) { return setsockopt ( fd, SOL_SOCKET, SO_BROADCAST, const_int_1, sizeof ( const_int_1) ) ; } char * safe_strncpy( char * dst, const char * src, size_t size) { if ( ! size) return dst; dst[ - - size] = \0 ; return strncpy ( dst, src, size) ; } int arpping( uint32_t test_ip, uint32_t from_ip, uint8_t * from_mac, const char * interface) { int timeout
您可能关注的文档
最近下载
- 小学体育_队列队形教学设计学情分析教材分析课后反思.doc
- 中建项目商务策划汇报模板.pptx
- 公路中小跨径钢-混组合梁桥标准图集(制订)》技术方案报告.docx
- “设计思维与方法”教案.ppt
- 大职赛生涯闯关参考答案.docx VIP
- 2022《美宜佳公司营运资金管理存在的问题及对策研究》开题报告文献综述(含提纲)3200字.docx VIP
- 长垣市人民医院西学中培训班《方剂学》考试.pdf VIP
- 苏教版一年级科学上册4.1《自然物与人造物》(课件).pptx
- 电子商务招聘简章模板.pdf
- 统编版小学语文二年级上册第六单元 先辈伟人 大单元整体学历案教案 教学设计附作业设计(基于新课标教学评一致性).docx
文档评论(0)