Ticket #21225: patch-dnsspoof.c.diff

File patch-dnsspoof.c.diff, 4.1 KB (added by hsivank@…, 15 years ago)
  • dnsspoof.c

    old new  
    3838
    3939pcap_t          *pcap_pd = NULL;
    4040int              pcap_off = -1;
    41 int              lnet_sock = -1;
     41libnet_t        *l;
    4242u_long           lnet_ip = -1;
    4343
    4444static void
     
    9090dns_init(char *dev, char *filename)
    9191{
    9292        FILE *f;
    93         struct libnet_link_int *llif;
     93        libnet_t *l;
     94        char libnet_ebuf[LIBNET_ERRBUF_SIZE];
    9495        struct dnsent *de;
    9596        char *ip, *name, buf[1024];
    9697
    97         if ((llif = libnet_open_link_interface(dev, buf)) == NULL)
    98                 errx(1, "%s", buf);
     98        if ((l = libnet_init(LIBNET_LINK, dev, libnet_ebuf)) == NULL)
     99                errx(1, "%s", libnet_ebuf);
    99100       
    100         if ((lnet_ip = libnet_get_ipaddr(llif, dev, buf)) == -1)
    101                 errx(1, "%s", buf);
     101        if ((lnet_ip = libnet_get_ipaddr4(l)) == -1)
     102                errx(1, "%s", libnet_geterror(l));
    102103
    103         lnet_ip = htonl(lnet_ip);
    104        
    105         libnet_close_link_interface(llif);
     104        libnet_destroy(l);
    106105
    107106        SLIST_INIT(&dns_entries);
    108107       
     
    180179static void
    181180dns_spoof(u_char *u, const struct pcap_pkthdr *pkthdr, const u_char *pkt)
    182181{
    183         struct libnet_ip_hdr *ip;
     182        struct libnet_ipv4_hdr *ip;
    184183        struct libnet_udp_hdr *udp;
    185184        HEADER *dns;
    186185        char name[MAXHOSTNAMELEN];
     
    189188        in_addr_t dst;
    190189        u_short type, class;
    191190
    192         ip = (struct libnet_ip_hdr *)(pkt + pcap_off);
     191        ip = (struct libnet_ipv4_hdr *)(pkt + pcap_off);
    193192        udp = (struct libnet_udp_hdr *)(pkt + pcap_off + (ip->ip_hl * 4));
    194193        dns = (HEADER *)(udp + 1);
    195194        p = (u_char *)(dns + 1);
     
    212211        if (class != C_IN)
    213212                return;
    214213
    215         p = buf + IP_H + UDP_H + dnslen;
     214        p = buf + dnslen;
    216215       
    217216        if (type == T_A) {
    218217                if ((dst = dns_lookup_a(name)) == -1)
     
    234233                anslen += 12;
    235234        }
    236235        else return;
    237        
    238         libnet_build_ip(UDP_H + dnslen + anslen, 0, libnet_get_prand(PRu16),
    239                         0, 64, IPPROTO_UDP, ip->ip_dst.s_addr,
    240                         ip->ip_src.s_addr, NULL, 0, buf);
    241        
    242         libnet_build_udp(ntohs(udp->uh_dport), ntohs(udp->uh_sport),
    243                          NULL, dnslen + anslen, buf + IP_H);
    244236
    245         memcpy(buf + IP_H + UDP_H, (u_char *)dns, dnslen);
     237        memcpy(buf, (u_char *)dns, dnslen);
    246238
    247         dns = (HEADER *)(buf + IP_H + UDP_H);
     239        dns = (HEADER *)buf;
    248240        dns->qr = dns->ra = 1;
    249241        if (type == T_PTR) dns->aa = 1;
    250242        dns->ancount = htons(1);
    251243
    252244        dnslen += anslen;
     245
     246        libnet_clear_packet(l);
     247        libnet_build_udp(ntohs(udp->uh_dport), ntohs(udp->uh_sport),
     248                         LIBNET_UDP_H + dnslen, 0,
     249                         (u_int8_t *)buf, dnslen, l, 0);
     250
     251        libnet_build_ipv4(LIBNET_IPV4_H + LIBNET_UDP_H + dnslen, 0,
     252                          libnet_get_prand(LIBNET_PRu16), 0, 64, IPPROTO_UDP, 0,
     253                          ip->ip_dst.s_addr, ip->ip_src.s_addr, NULL, 0, l, 0);
    253254       
    254         libnet_do_checksum(buf, IPPROTO_UDP, UDP_H + dnslen);
    255        
    256         if (libnet_write_ip(lnet_sock, buf, IP_H + UDP_H + dnslen) < 0)
     255        if (libnet_write(l) < 0)
    257256                warn("write");
    258257
    259258        fprintf(stderr, "%s.%d > %s.%d:  %d+ %s? %s\n",
    260               libnet_host_lookup(ip->ip_src.s_addr, 0), ntohs(udp->uh_sport),
    261               libnet_host_lookup(ip->ip_dst.s_addr, 0), ntohs(udp->uh_dport),
     259              libnet_addr2name4(ip->ip_src.s_addr, 0), ntohs(udp->uh_sport),
     260              libnet_addr2name4(ip->ip_dst.s_addr, 0), ntohs(udp->uh_dport),
    262261              ntohs(dns->id), type == T_A ? "A" : "PTR", name);
    263262}
    264263
    265264static void
    266265cleanup(int sig)
    267266{
    268         libnet_close_raw_sock(lnet_sock);
     267        libnet_destroy(l);
    269268        pcap_close(pcap_pd);
    270269        exit(0);
    271270}
     
    276275        extern char *optarg;
    277276        extern int optind;
    278277        char *p, *dev, *hosts, buf[1024];
     278        char ebuf[LIBNET_ERRBUF_SIZE];
    279279        int i;
    280280
    281281        dev = hosts = NULL;
     
    306306                strlcpy(buf, p, sizeof(buf));
    307307        }
    308308        else snprintf(buf, sizeof(buf), "udp dst port 53 and not src %s",
    309                       libnet_host_lookup(lnet_ip, 0));
     309                      libnet_addr2name4(lnet_ip, LIBNET_DONT_RESOLVE));
    310310       
    311311        if ((pcap_pd = pcap_init(dev, buf, 128)) == NULL)
    312312                errx(1, "couldn't initialize sniffing");
     
    314314        if ((pcap_off = pcap_dloff(pcap_pd)) < 0)
    315315                errx(1, "couldn't determine link layer offset");
    316316       
    317         if ((lnet_sock = libnet_open_raw_sock(IPPROTO_RAW)) == -1)
     317        if ((l = libnet_init(LIBNET_RAW4, dev, ebuf)) == NULL)
    318318                errx(1, "couldn't initialize sending");
    319319       
    320         libnet_seed_prand();
     320        libnet_seed_prand(l);
    321321       
    322322        signal(SIGHUP, cleanup);
    323323        signal(SIGINT, cleanup);