diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-03-22 20:29:13 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-03-22 20:29:13 +0000 |
commit | 2bde76b587156e34820b2d3bfeae946fa735a066 (patch) | |
tree | ab282064977bafa5af364f4c00f86126d6c72453 | |
parent | 10d8e9151d75c1ef81740d56b703fc147086f175 (diff) |
Move some unused modules to -extras
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12651 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_antibear.cpp | 75 | ||||
-rw-r--r-- | src/modules/m_antibottler.cpp | 93 | ||||
-rw-r--r-- | src/modules/m_invisible.cpp | 191 |
3 files changed, 0 insertions, 359 deletions
diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp deleted file mode 100644 index 4288c6bfc..000000000 --- a/src/modules/m_antibear.cpp +++ /dev/null @@ -1,75 +0,0 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ - * - * InspIRCd: (C) 2002-2010 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits - * - * This program is free but copyrighted software; see - * the file COPYING for details. - * - * --------------------------------------------------- - */ - -#include "inspircd.h" -#include "xline.h" - -/* $ModDesc: Sends a numeric on connect which cripples a common type of trojan/spambot */ - -class ModuleAntiBear : public Module -{ - LocalIntExt bearExt; - public: - ModuleAntiBear() : bearExt("antibear_timewait", this) - { - ServerInstance->Extensions.Register(&bearExt); - Implementation eventlist[] = { I_OnUserRegister, I_OnPreCommand }; - ServerInstance->Modules->Attach(eventlist, this, 2); - } - - virtual ~ModuleAntiBear() - { - } - - virtual Version GetVersion() - { - return Version("Sends a numeric on connect which cripples a common type of trojan/spambot",VF_VENDOR); - } - - virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> ¶meters, LocalUser *user, bool validated, const std::string &original_line) - { - if (command == "NOTICE" && !validated && parameters.size() > 1 && bearExt.get(user)) - { - if (!strncmp(parameters[1].c_str(), "\1TIME Mon May 01 18:54:20 2006", 30)) - { - ZLine* zl = new ZLine(ServerInstance->Time(), 86400, ServerInstance->Config->ServerName.c_str(), - "Unless you're stuck in a time warp, you appear to be a bear bot!", user->GetIPString()); - if (ServerInstance->XLines->AddLine(zl,NULL)) - { - ServerInstance->XLines->ApplyLines(); - } - else - delete zl; - - return MOD_RES_DENY; - } - - bearExt.set(user, 0); - // Block the command, so the user doesn't receive a no such nick notice - return MOD_RES_DENY; - } - - return MOD_RES_PASSTHRU; - } - - virtual ModResult OnUserRegister(LocalUser* user) - { - user->WriteNumeric(439, "%s :This server has anti-spambot mechanisms enabled.", user->nick.c_str()); - user->WriteNumeric(931, "%s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick.c_str()); - user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick.c_str()); - bearExt.set(user, 1); - return MOD_RES_PASSTHRU; - } -}; - -MODULE_INIT(ModuleAntiBear) diff --git a/src/modules/m_antibottler.cpp b/src/modules/m_antibottler.cpp deleted file mode 100644 index 4f6451ccc..000000000 --- a/src/modules/m_antibottler.cpp +++ /dev/null @@ -1,93 +0,0 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ - * - * InspIRCd: (C) 2002-2010 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits - * - * This program is free but copyrighted software; see - * the file COPYING for details. - * - * --------------------------------------------------- - */ - -#include "inspircd.h" - -/* $ModDesc: Changes the ident of connecting bottler clients to 'bottler' */ - -class ModuleAntiBottler : public Module -{ - public: - ModuleAntiBottler() - { - - Implementation eventlist[] = { I_OnPreCommand }; - ServerInstance->Modules->Attach(eventlist, this, 1); - } - - - - virtual ~ModuleAntiBottler() - { - } - - virtual Version GetVersion() - { - return Version("Changes the ident of connecting bottler clients to 'bottler'",VF_VENDOR); - } - - virtual ModResult OnPreCommand(std::string &command, std::vector<std::string> ¶meters, LocalUser *user, bool validated, const std::string &original_line) - { - char data[MAXBUF]; - strlcpy(data,original_line.c_str(),MAXBUF); - bool not_bottler = false; - if (!strncmp(data,"user ",5)) - { - for (char* j = data; *j; j++) - { - if (*j == ':') - break; - - if (*j == '"') - { - not_bottler = true; - } - } - // Bug Fix (#14) -- FCS - if (!*data) - return MOD_RES_PASSTHRU; - - strtok(data," "); - char *ident = strtok(NULL," "); - char *local = strtok(NULL," "); - char *remote = strtok(NULL," :"); - char *gecos = strtok(NULL,"\r\n"); - - if (!ident || !local || !remote || !gecos) - return MOD_RES_PASSTHRU; - - for (char* j = remote; *j; j++) - { - if (((*j < '0') || (*j > '9')) && (*j != '.')) - { - not_bottler = true; - } - } - - if (!not_bottler) - { - std::string strgecos = std::string(gecos) + "[Possible bottler, ident: " + std::string(ident) + "]"; - std::vector<std::string> modified; - modified.push_back("bottler"); - modified.push_back(local); - modified.push_back(remote); - modified.push_back(strgecos); - ServerInstance->Parser->CallHandler("USER", modified, user); - return MOD_RES_DENY; - } - } - return MOD_RES_PASSTHRU; - } -}; - -MODULE_INIT(ModuleAntiBottler) diff --git a/src/modules/m_invisible.cpp b/src/modules/m_invisible.cpp deleted file mode 100644 index 49114fa28..000000000 --- a/src/modules/m_invisible.cpp +++ /dev/null @@ -1,191 +0,0 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon - * +------------------------------------+ - * - * InspIRCd: (C) 2002-2010 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits - * - * This program is free but copyrighted software; see - * the file COPYING for details. - * - * --------------------------------------------------- - */ - -#include "inspircd.h" -#include <stdarg.h> - -/* $ModDesc: Allows for opered clients to join channels without being seen, similar to unreal 3.1 +I mode */ - -class InvisibleMode : public ModeHandler -{ - public: - InvisibleMode(Module* Creator) : ModeHandler(Creator, "invis-oper", 'Q', PARAM_NONE, MODETYPE_USER) - { - oper = true; - } - - ~InvisibleMode() - { - } - - ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding) - { - if (dest->IsModeSet('Q') != adding) - { - dest->SetMode('Q', adding); - - /* Fix for bug #379 reported by stealth. On +/-Q make m_watch think the user has signed on/off */ - Module* m = ServerInstance->Modules->Find("m_watch.so"); - - /* This must come before setting/unsetting the handler */ - if (m && adding) - m->OnUserQuit(dest, "Connection closed", "Connection closed"); - - /* User appears to vanish or appear from nowhere */ - for (UCListIter f = dest->chans.begin(); f != dest->chans.end(); f++) - { - const UserMembList *ulist = (*f)->GetUsers(); - char tb[MAXBUF]; - - snprintf(tb,MAXBUF,":%s %s %s", dest->GetFullHost().c_str(), adding ? "PART" : "JOIN", (*f)->name.c_str()); - std::string out = tb; - Membership* memb = (**f).GetUser(dest); - std::string ms = memb->modes; - for(unsigned int i=0; i < memb->modes.length(); i++) - ms.append(" ").append(dest->nick); - - - for (UserMembCIter i = ulist->begin(); i != ulist->end(); i++) - { - /* User only appears to vanish for non-opers */ - if (IS_LOCAL(i->first) && !IS_OPER(i->first)) - { - i->first->Write(out); - if (!ms.empty() && !adding) - i->first->WriteServ("MODE %s +%s", (**f).name.c_str(), ms.c_str()); - } - } - } - - ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has become %svisible (%cQ)", dest->GetFullHost().c_str(), adding ? "in" : "", adding ? '+' : '-'); - return MODEACTION_ALLOW; - } - else - { - return MODEACTION_DENY; - } - } -}; - -class ModuleInvisible : public Module -{ - private: - InvisibleMode qm; - bool hidejoin; - bool hidelist; - bool hidewho; - bool hidemsg; - public: - ModuleInvisible() : qm(this) - { - } - - void init() - { - if (!ServerInstance->Modes->AddMode(&qm)) - throw ModuleException("Could not add new modes!"); - - /* Yeah i know people can take this out. I'm not about to obfuscate code just to be a pain in the ass. */ - ServerInstance->Users->ServerNoticeAll("*** m_invisible.so has just been loaded on this network. For more information, please visit http://inspircd.org/wiki/Modules/invisible"); - Implementation eventlist[] = { - I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserJoin, - I_OnBuildNeighborList, I_OnSendWhoLine, I_OnNamesListItem, - I_OnRehash - }; - ServerInstance->Modules->Attach(eventlist, this, 7); - OnRehash(NULL); - } - - void OnRehash(User*) - { - ConfigTag* tag = ServerInstance->Config->ConfValue("invisible"); - hidejoin = tag->getBool("join"); - hidelist = tag->getBool("list"); - hidewho = tag->getBool("who"); - hidemsg = tag->getBool("msg"); - } - Version GetVersion(); - void OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts); - void OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exceptions); - ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list); - ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list); - void OnSendWhoLine(User* source, const std::vector<std::string>&, User* user, std::string& line); - void OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick); -}; - -Version ModuleInvisible::GetVersion() -{ - return Version("Allows opers to join channels invisibly", VF_VENDOR); -} - -static void BuildExcept(Membership* memb, CUList& excepts) -{ - const UserMembList* users = memb->chan->GetUsers(); - for(UserMembCIter i = users->begin(); i != users->end(); i++) - { - if (IS_LOCAL(i->first) && i->first->HasPrivPermission("invisible/see")) - excepts.insert(i->first); - } -} - -void ModuleInvisible::OnUserJoin(Membership* memb, bool sync, bool created, CUList& excepts) -{ - if (hidejoin && memb->user->IsModeSet('Q')) - { - BuildExcept(memb, excepts); - ServerInstance->SNO->WriteToSnoMask('a', "\2NOTICE\2: Oper %s has joined %s invisibly (+Q)", - memb->user->GetFullHost().c_str(), memb->chan->name.c_str()); - } -} - -void ModuleInvisible::OnBuildNeighborList(User* source, UserChanList &include, std::map<User*,bool> &exceptions) -{ - if (hidewho && source->IsModeSet('Q')) - { - include.clear(); - } -} - -/* No privmsg response when hiding - submitted by Eric at neowin */ -ModResult ModuleInvisible::OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) -{ - if ((target_type == TYPE_USER) && (IS_LOCAL(user))) - { - User* target = (User*)dest; - if(hidemsg && target->IsModeSet('Q') && !IS_OPER(user)) - { - user->WriteNumeric(401, "%s %s :No such nick/channel",user->nick.c_str(), target->nick.c_str()); - return MOD_RES_DENY; - } - } - return MOD_RES_PASSTHRU; -} - -ModResult ModuleInvisible::OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list) -{ - return OnUserPreNotice(user, dest, target_type, text, status, exempt_list); -} - -void ModuleInvisible::OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line) -{ - if (hidewho && user->IsModeSet('Q') && !IS_OPER(source)) - line.clear(); -} - -void ModuleInvisible::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick) -{ - if (hidelist && memb->user->IsModeSet('Q') && !IS_OPER(issuer)) - nick.clear(); -} - -MODULE_INIT(ModuleInvisible) |