summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-24 18:14:38 +0000
committerdanieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7>2009-02-24 18:14:38 +0000
commit4d42d544584875d0d71dab99f6785ac98324b971 (patch)
tree2bbc0fc468fe1ca7b68b22f6d78ba1cf379aa8b6 /src
parente8a6dfa763ccf5a3094483045efdf815f6158e79 (diff)
Allow non-opers to use /MKPASSWD
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11147 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_password_hash.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/modules/m_password_hash.cpp b/src/modules/m_password_hash.cpp
index b84900f93..3e94e9db1 100644
--- a/src/modules/m_password_hash.cpp
+++ b/src/modules/m_password_hash.cpp
@@ -28,7 +28,7 @@ class CommandMkpasswd : public Command
std::deque<std::string> &names;
public:
CommandMkpasswd (InspIRCd* Instance, Module* S, hashymodules &h, std::deque<std::string> &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 = "<hashtype> <any-text>";
@@ -60,11 +60,11 @@ class CommandMkpasswd : public Command
CmdResult Handle (const std::vector<std::string>& 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;
}
};