From 30b22d2b48ecdeac906c69fb28d6df2ef782f792 Mon Sep 17 00:00:00 2001 From: brain Date: Fri, 22 Apr 2005 15:10:11 +0000 Subject: Added OnOperCompare function to override strcmp in password check for /oper git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1161 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/commands.cpp | 13 +++++++++++-- src/modules.cpp | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/commands.cpp b/src/commands.cpp index 7093386aa..db2cd3624 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1605,7 +1605,16 @@ bool is_uline(const char* server) } return false; } - +int operstrcmp(char* data,char* input) +{ + int MOD_RESULT = 0; + FOREACH_RESULT(OnOperCompare(data,input)) + if (MOD_RESULT == 1) + return 0; + if (MOD_RESULT == -1) + return 1; + return strcmp(data,input); +} void handle_oper(char **parameters, int pcnt, userrec *user) { @@ -1628,7 +1637,7 @@ void handle_oper(char **parameters, int pcnt, userrec *user) ConfValue("oper","password",i,Password,&config_f); ConfValue("oper","type",i,OperType,&config_f); ConfValue("oper","host",i,HostName,&config_f); - if ((!strcmp(LoginName,parameters[0])) && (!strcmp(Password,parameters[1])) && (match(TheHost,HostName))) + if ((!strcmp(LoginName,parameters[0])) && (!operstrcmp(Password,parameters[1])) && (match(TheHost,HostName))) { fail2 = true; for (j =0; j < ConfValueEnum("type",&config_f); j++) diff --git a/src/modules.cpp b/src/modules.cpp index 50b9bdbc2..83abb6e57 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -405,7 +405,7 @@ int Module::OnLocalTopicChange(userrec* user, chanrec* chan, std::string topic) int Module::OnMeshToken(char token,string_list params,serverrec* source,serverrec* reply, std::string tcp_host,std::string ipaddr,int port) { return 0; }; void Module::OnEvent(Event* event) { return; }; char* Module::OnRequest(Request* request) { return NULL; }; - +int Module::OnOperCompare(std::string password, std::string input) { return 0; }; // server is a wrapper class that provides methods to all of the C-style // exports in the core -- cgit v1.2.3