X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_ident.cpp;h=f1c3b81fdebadb6e415533d47afe17b325c6815f;hb=1dfead3b2cc9e8c603f6ad6f7216576a2ce361fb;hp=35084fd453a23be754804706cef5b8606edf649c;hpb=a4db7bf9af00b32d4f5c1922997d02b0b8be59e5;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index 35084fd45..f1c3b81fd 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -235,14 +235,20 @@ class IdentRequestSocket : public EventHandler */ ibuf[recvresult] = '\0'; std::string buf(ibuf); - std::string::size_type lastcolon = buf.rfind(':'); - if (lastcolon == std::string::npos) + + /* <2 colons: invalid + * 2 colons: reply is an error + * >3 colons: there is a colon in the ident + */ + if (std::count(buf.begin(), buf.end(), ':') != 3) return; + std::string::size_type lastcolon = buf.rfind(':'); + /* Truncate the ident at any characters we don't like, skip leading spaces */ for (std::string::const_iterator i = buf.begin()+lastcolon+1; i != buf.end(); ++i) { - if (result.size()+1 == ServerInstance->Config->Limits.IdentMax) + if (result.size() == ServerInstance->Config->Limits.IdentMax) /* Ident is getting too long */ break; @@ -270,12 +276,17 @@ class ModuleIdent : public Module public: ModuleIdent() : ext("ident_socket", this) { + } + + void init() + { + ServerInstance->Modules->AddService(ext); OnRehash(NULL); Implementation eventlist[] = { I_OnRehash, I_OnUserInit, I_OnCheckReady, I_OnUserDisconnect, I_OnSetConnectClass }; - ServerInstance->Modules->Attach(eventlist, this, 5); + ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } ~ModuleIdent()