X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_password_hash.cpp;h=e91bedd70ce4f08f63ad707535570ee55c9ad27f;hb=8cebe2878f3878afce6f643d93668155cb26801d;hp=4d3a9da63dadca4a3df5fbcb8863652ba1390ced;hpb=d185decae97752368d5cf62311cbc0d1a52aa22c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_password_hash.cpp b/src/modules/m_password_hash.cpp index 4d3a9da63..e91bedd70 100644 --- a/src/modules/m_password_hash.cpp +++ b/src/modules/m_password_hash.cpp @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -28,7 +28,7 @@ class CommandMkpasswd : public Command std::deque &names; public: CommandMkpasswd (InspIRCd* Instance, Module* S, hashymodules &h, std::deque &n) - : Command(Instance,"MKPASSWD", "o", 2), Sender(S), hashers(h), names(n) + : Command(Instance,"MKPASSWD", 0, 2), Sender(S), hashers(h), names(n) { this->source = "m_password_hash.so"; syntax = " "; @@ -45,6 +45,11 @@ class CommandMkpasswd : public Command /* Now attempt to generate a hash */ user->WriteServ("NOTICE %s :%s hashed password for %s is %s",user->nick.c_str(), algo, stuff, HashSumRequest(Sender, x->second, stuff).Send() ); } + else if (names.empty()) + { + /* same idea as bug #569 */ + user->WriteServ("NOTICE %s :No hash provider modules are loaded", user->nick.c_str()); + } else { /* I dont do flying, bob. */ @@ -55,18 +60,18 @@ class CommandMkpasswd : public Command CmdResult Handle (const std::vector& parameters, User *user) { MakeHash(user, parameters[0].c_str(), parameters[1].c_str()); - /* NOTE: Don't propagate this across the network! - * We dont want plaintext passes going all over the place... - * To make sure it goes nowhere, return CMD_FAILURE! - */ - return CMD_FAILURE; + // this hashing could take some time, increasing server load. + // Slow down the user if they are trying to flood mkpasswd requests + user->IncreasePenalty(5); + + return CMD_LOCALONLY; } }; class ModuleOperHash : public Module { - CommandMkpasswd* mycommand; + CommandMkpasswd cmd; hashymodules hashers; /* List of modules which implement HashRequest */ std::deque names; /* Module names which implement HashRequest */ @@ -74,13 +79,13 @@ class ModuleOperHash : public Module public: ModuleOperHash(InspIRCd* Me) - : Module(Me) + : Module(Me), cmd(Me, this, hashers, names) { diduseiface = false; /* Read the config file first */ // Conf = NULL; - OnRehash(NULL,""); + OnRehash(NULL); /* Find all modules which implement the interface 'HashRequest' */ modulelist* ml = ServerInstance->Modules->FindInterface("HashRequest"); @@ -104,8 +109,7 @@ class ModuleOperHash : public Module diduseiface = true; } - mycommand = new CommandMkpasswd(ServerInstance, this, hashers, names); - ServerInstance->AddCommand(mycommand); + ServerInstance->AddCommand(&cmd); Implementation eventlist[] = { I_OnPassCompare, I_OnLoadModule }; ServerInstance->Modules->Attach(eventlist, this, 2); } @@ -155,7 +159,7 @@ class ModuleOperHash : public Module virtual Version GetVersion() { - return Version(1,2,0,1,VF_VENDOR,API_VERSION); + return Version("$Id$",VF_VENDOR,API_VERSION); } };