From 3e0bbf27906d0485c091457a76dd8447b9ad75ba Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 2 Feb 2006 15:15:52 +0000 Subject: Users are gonna erupt in flamewars over this... and google will love us >:) git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3013 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spy.cpp | 197 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 197 insertions(+) create mode 100644 src/modules/m_spy.cpp (limited to 'src/modules') diff --git a/src/modules/m_spy.cpp b/src/modules/m_spy.cpp new file mode 100644 index 000000000..beeb0f0d3 --- /dev/null +++ b/src/modules/m_spy.cpp @@ -0,0 +1,197 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. + * E-mail: + * + * + * + * Written by Craig Edwards, Craig McLure, and others. + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +/* NO, THIS MODULE DOES NOT SPY ON CHANNELS OR USERS. + * IT JUST ALLOWS OPERS TO SEE +s CHANNELS IN LIST AND + * WHOIS, WHICH IS SUPPORTED BY MOST IRCDS IN CORE. + */ + +using namespace std; + +/* $ModDesc: Provides SPYLIST and SPYNAMES capability, allowing opers to see who's in +s channels */ + +#include +#include +#include +#include "globals.h" +#include "inspircd_config.h" +#ifdef GCC3 +#include +#else +#include +#endif +#include "users.h" +#include "channels.h" +#include "modules.h" +#include "commands.h" +#include "socket.h" +#include "helperfuncs.h" +#include "inspircd.h" +#include "inspstring.h" +#include "hashcomp.h" +#include "message.h" +#include "xline.h" +#include "typedefs.h" +#include "cull_list.h" +#include "aes.h" + +#ifdef GCC3 +#define nspace __gnu_cxx +#else +#define nspace std +#endif + + +Server *Srv; + +extern ServerConfig* Config; +extern InspIRCd* ServerInstance; +extern chan_hash chanlist; + +void spy_userlist(userrec *user,chanrec *c) +{ + static char list[MAXBUF]; + + if ((!c) || (!user)) + return; + + snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name); + + std::map *ulist= c->GetUsers(); + for (std::map::iterator i = ulist->begin(); i != ulist->end(); i++) + { + char* o = i->second; + userrec* otheruser = (userrec*)o; + strlcat(list,cmode(otheruser,c),MAXBUF); + strlcat(list,otheruser->nick,MAXBUF); + strlcat(list," ",MAXBUF); + if (strlen(list)>(480-NICKMAX)) + { + /* list overflowed into + * multiple numerics */ + WriteServ_NoFormat(user->fd,list); + snprintf(list,MAXBUF,"353 %s = %s :", user->nick, c->name); + } + } + /* if whats left in the list isnt empty, send it */ + if (list[strlen(list)-1] != ':') + { + WriteServ_NoFormat(user->fd,list); + } +} + + + +class cmd_spylist : public command_t +{ + public: + cmd_spylist () : command_t("SPYLIST", 'o', 0) + { + this->source = "m_spy.so"; + } + + void cmd_spylist::Handle (char **parameters, int pcnt, userrec *user) + { + WriteServ(user->fd,"321 %s Channel :Users Name",user->nick); + for (chan_hash::const_iterator i = chanlist.begin(); i != chanlist.end(); i++) + { + WriteServ(user->fd,"322 %s %s %d :[+%s] %s",user->nick,i->second->name,usercount_i(i->second),chanmodes(i->second,true),i->second->topic); + } + WriteServ(user->fd,"323 %s :End of channel list.",user->nick); + } +}; + +class cmd_spynames : public command_t +{ + public: + cmd_spynames () : command_t("SPYNAMES", 'o', 0) + { + this->source = "m_spy.so"; + } + + void cmd_spynames::Handle (char **parameters, int pcnt, userrec *user) + { + chanrec* c; + + if (!pcnt) + { + WriteServ(user->fd,"366 %s * :End of /NAMES list.",user->nick); + return; + } + + if (ServerInstance->Parser->LoopCall(this,parameters,pcnt,user,0,pcnt-1,0)) + return; + c = FindChan(parameters[0]); + if (c) + { + spy_userlist(user,c); + WriteServ(user->fd,"366 %s %s :End of /NAMES list.", user->nick, c->name); + } + else + { + WriteServ(user->fd,"401 %s %s :No such nick/channel",user->nick, parameters[0]); + } + } +}; + +class ModuleSpy : public Module +{ + cmd_spylist *mycommand; + cmd_spynames *mycommand2; + public: + ModuleSpy(Server* Me) : Module::Module(Me) + { + Srv = Me; + mycommand = new cmd_spylist(); + mycommand2 = new cmd_spynames(); + Srv->AddCommand(mycommand); + Srv->AddCommand(mycommand2); + } + + virtual ~ModuleSpy() + { + } + + virtual Version GetVersion() + { + return Version(1, 0, 0, 0, VF_VENDOR); + } +}; + + +class ModuleSpyFactory : public ModuleFactory +{ + public: + ModuleSpyFactory() + { + } + + ~ModuleSpyFactory() + { + } + + virtual Module * CreateModule(Server* Me) + { + return new ModuleSpy(Me); + } + +}; + + +extern "C" void * init_module( void ) +{ + return new ModuleSpyFactory; +} -- cgit v1.2.3