免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1664 | 回复: 0
打印 上一主题 下一主题

[Linux] linux伪装网关给自己发 ICMP重定向数据包 路由表没有变化 WHY? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-10-15 22:34 |只看该作者 |倒序浏览
本帖最后由 626788149 于 2014-10-16 13:06 编辑
  1. #include<stdlib.h>
  2. #include<sys/socket.h>
  3. #include<netinet/ip_icmp.h>
  4. #include<netinet/in.h>
  5. #include<netinet/udp.h>
  6. #include<netinet/ip.h>
  7. void send_icmptime(int sockfd, struct sockaddr *sa, socklen_t len);
  8. uint16_t in_cksum(uint16_t *addr, int len);
  9. #define MAXLINE 1024
  10. void main()
  11. {       
  12.         int sockfd;
  13.         struct sockaddr_in sin;
  14.         sin.sin_family = AF_INET;
  15.         struct addrinfo *ai;
  16.         int on =1;
  17.         inet_pton(AF_INET, "186.9.9.9", &sin.sin_addr);
  18.         if( (sockfd = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0)
  19.                 perror("socket");
  20.         if( setsockopt(sockfd, IPPROTO_IP, IP_HDRINCL, &on, sizeof(int)) < 0)
  21.                 perror("setsockopt");
  22.         send_icmptime(sockfd, (struct sockaddr *)&sin, sizeof(sin));
  23. }
  24. void send_icmptime(int sockfd, struct sockaddr *s, socklen_t len)
  25. {
  26.        
  27.                
  28.         struct in_addr myaddr;
  29.         inet_pton(AF_INET, "172.21.203.91", &myaddr);
  30.         struct icmp *icmp;
  31.         struct timeval val;
  32.         struct ip *ip1;
  33.          
  34.         ip1 = (struct ip *)malloc(56);
  35.         ip1->ip_v = 4;
  36.         ip1->ip_hl = 5;
  37.         ip1->ip_tos = 0;
  38.         ip1->ip_len = 56;       
  39.         ip1->ip_id = 0;
  40.         ip1->ip_off = 0;
  41.         ip1->ip_ttl = 64;
  42.         ip1->ip_p = IPPROTO_ICMP;
  43.         ip1->ip_sum = 0;
  44.         inet_pton(AF_INET, "119.75.217.96", &ip1->ip_src);
  45.         inet_pton(AF_INET, "127.0.0.1", &ip1->ip_dst);

  46.        
  47.         icmp = (struct icmp *)((char *)ip1 + 20);
  48.         icmp->icmp_type = ICMP_REDIRECT;
  49.         icmp->icmp_code = ICMP_REDIRECT_HOST;
  50.         icmp->icmp_cksum = 0;
  51.         icmp->icmp_gwaddr = myaddr;
  52.        
  53.         struct ip *ip;
  54.         ip = (struct ip *)((char *)icmp + 8);
  55.         ip->ip_v = 4;
  56.         ip->ip_hl = 5;
  57.         ip->ip_tos = 0;
  58.         ip->ip_len = htons(55);       
  59.         ip->ip_id = 0;
  60.         ip->ip_off = 0;
  61.         ip->ip_ttl = 54;
  62.         ip->ip_p = IPPROTO_UDP;
  63.         ip->ip_sum = 0;
  64.         inet_pton(AF_INET, "172.21.202.14", &ip->ip_src);
  65.         inet_pton(AF_INET, "172.21.202.91", &ip->ip_dst);
  66.         ip->ip_sum = in_cksum((u_short *)ip, 20);
  67.        
  68.         struct udphdr *udp;
  69.         udp = (struct udphdr*)((char *)ip + 20);
  70.         udp->uh_sport =  6666;
  71.         udp->uh_dport =  6666;       
  72.         udp->uh_ulen = htons(55);
  73.         udp->uh_sum = in_cksum((u_short *)udp, 8);
  74.         icmp->icmp_cksum = in_cksum((u_short *)icmp, 36);
  75.         if(sendto(sockfd, ip1, 56, 0 ,s, len) < 0)
  76.                 perror("sendto");
  77. }
  78. uint16_t in_cksum(uint16_t *addr, int len)
  79. {
  80.         int nleft = len;
  81.         uint32_t sum = 0;
  82.         uint16_t *w = addr;
  83.         uint16_t answer = 0;
  84.         while(nleft > 1)
  85.         {
  86.                 sum += *w++;
  87.                 nleft -= 2;
  88.         }
  89.         if(nleft == 1)
  90.         {
  91.                 *(unsigned char *)(&answer) = *(unsigned char *)w;
  92.                 sum += answer;
  93.         }
  94.         sum = ( sum >> 16) + (sum & 0xffff);
  95.         sum += (sum >> 16);
  96.         answer =~sum;
  97.         return answer;

  98. }
复制代码
root@zz-E431:/home/zz# tcpdump -i ppp0 icmp
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on ppp0, link-type LINUX_SLL (Linux cooked), capture size 65535 bytes
13:01:46.891807 IP 119.75.217.96 > localhost: ICMP redirect 172.21.202.91 to host 172.21.203.91, length 36
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP