X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fmodules%2Fm_antibear.cpp;h=2718cbb4ce6b4db2a005259697aab864492830b4;hb=f2acdbc3820f0f4f5ef76a0a64e73d2a320df91f;hp=f0affea7e427e4f773574ac2323377d9c7e80064;hpb=9cf56d917d92959701694477f7944d45ad2c38ed;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp index f0affea7e..2718cbb4c 100644 --- a/src/modules/m_antibear.cpp +++ b/src/modules/m_antibear.cpp @@ -11,10 +11,10 @@ * --------------------------------------------------- */ +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" -#include "inspircd.h" #include "xline.h" /* $ModDesc: Sends a numeric on connect which cripples a common type of trojan/spambot */ @@ -45,7 +45,7 @@ class ModuleAntiBear : public Module virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, userrec *user, bool validated, const std::string &original_line) { - if (command == "NOTICE" && !validated && pcnt > 1) + if (command == "NOTICE" && !validated && pcnt > 1 && user->GetExt("antibear_timewait")) { if (!strncmp(parameters[1], "\1TIME Mon May 01 18:54:20 2006", 30)) { @@ -56,13 +56,12 @@ class ModuleAntiBear : public Module return 1; } } - else - { - /* Theyre not registered and the notice is targetted at a server. */ - if ((user->registered != REG_ALL) && (strchr(parameters[0], '.'))) - return 1; - } + + user->Shrink("antibear_timewait"); + // Block the command, so the user doesn't receive a no such nick notice + return 1; } + return 0; } @@ -71,35 +70,9 @@ class ModuleAntiBear : public Module user->WriteServ("439 %s :This server has anti-spambot mechanisms enabled.", user->nick); user->WriteServ("931 %s :Malicious bots, spammers, and other automated systems of dubious origin are NOT welcome here.", user->nick); user->WriteServ("PRIVMSG %s :\1TIME\1", user->nick); + user->Extend("antibear_timewait"); return 0; } }; -class ModuleAntiBearFactory : public ModuleFactory -{ - public: - ModuleAntiBearFactory() - { - } - - ~ModuleAntiBearFactory() - { - } - - virtual Module * CreateModule(InspIRCd* Me) - { - return new ModuleAntiBear(Me); - } - -}; - - -// -// The "C" linkage factory0() function creates the ModuleAntiBearFactory -// class for this library -// - -extern "C" DllExport void * init_module( void ) -{ - return new ModuleAntiBearFactory; -} +MODULE_INIT(ModuleAntiBear)