- 论坛徽章:
- 0
|
- #include <stdio.h>
- #include <netinet/ip.h>
- #include <netinet/tcp.h>
- #include <netinet/in.h>
- #include <netinet/ip_icmp.h>
- #include <arpa/inet.h>
- #include <sys/socket.h>
- #include <stdlib.h>
- #define oops(msg){perror(msg);exit(0);}
- unsigned short icmpcheck(unsigned short *,int );
- int main(int ac,char**av)
- {
- int sockfd=0;
- if((sockfd=socket(AF_INET,SOCK_RAW,htons(IPPROTO_ICMP)))<0)
- oops("socket");
- // int val=1;
- // if((setsockopt(sockfd,IPPROTO_IP,IP_HDRINCL,&val,sizeof(val)))<0)
- // oops("setsocket");
- unsigned char buff[1024]={0};
- // int ip_len=sizeof(struct ip)+sizeof(struct icmphdr);
- // struct ip *ip;
- /* ip=(struct ip*)buff;
- ip->ip_hl=5;
- ip->ip_v=4;
- ip->ip_tos=0;
- ip->ip_len=htons(ip_len);
- ip->ip_id=0;
- ip->ip_off=0;
- ip->ip_ttl=255;
- ip->ip_p=IPPROTO_ICMP;
- ip->ip_sum=0;
- inet_aton("192.168.1.102",&ip->ip_src); //本地ip
- inet_aton(av[1],&ip->ip_dst);// 请求ip */
- struct icmphdr *icmp;
- icmp=(struct icmphdr*)(buff);
- icmp->type=8;
- icmp->code=0;
- icmp->checksum=0;
- icmp->un.echo.sequence=1; //随机定义的,下面id也是
- icmp->un.echo.id=1;
- int nbytes=0;
- struct sockaddr_in sa;
- sa.sin_family=AF_INET;
- inet_aton(av[1],&sa.sin_addr);
- int icmp_len=sizeof(struct icmphdr);
- while(1)
- {
- icmp->checksum=icmpcheck((unsigned short*)icmp,sizeof(struct icmphdr));
- nbytes=sendto(sockfd,buff,icmp_len,0,(struct sockaddr*)&sa,sizeof(sa));
- printf("nbytes is %d\n",nbytes);
- sleep(1);
- }
- close(sockfd);
- return 0;
- }
- unsigned short icmpcheck(unsigned short *icmp,int len)
- {
- unsigned long sum=0;
- while(len>1)
- {
- sum=*icmp++;
- len-=2;
- }
- if(len)
- sum=*icmp++;
- while(sum>>16)
- sum=(sum>>16)+(sum&0xffff);
- return (unsigned short)~sum;
- }
复制代码 |
|