/* * cmds.c -- handles: * commands from a user via dcc * (split in 3, this portion contains no-irc commands) * */ #include "common.h" #include "cmds.h" #include "conf.h" #include "color.h" #include "settings.h" #include "salt.h" #include "debug.h" #include "dcc.h" #include "shell.h" #include "misc.h" #include "net.h" #include "userrec.h" #include "users.h" #include "egg_timer.h" #include "userent.h" #include "tclhash.h" #include "match.h" #include "main.h" #include "dccutil.h" #include "chanprog.h" #include "botmsg.h" #include "botcmd.h" #include "botnet.h" #include "tandem.h" #include "help.h" #include "traffic.h" /* egg_traffic_t */ #include "core_binds.h" #include "src/mod/console.mod/console.h" #ifdef LEAF #include "src/mod/server.mod/server.h" #include "src/mod/irc.mod/irc.h" #endif /* LEAF */ #include #include #include #include extern egg_traffic_t traffic; mycmds cmdlist[300]; /* the list of dcc cmds for help system */ int cmdi = 0; static char *btos(unsigned long); #ifdef HUB static void tell_who(struct userrec *u, int idx, int chan) { int i, k, ok = 0, atr = u ? u->flags : 0; int nicklen; char format[81] = ""; #ifdef HUB char s[1024] = ""; #endif /* HUB */ if (!chan) dprintf(idx, "%s (* = %s, + = %s, @ = %s)\n", BOT_PARTYMEMBS, MISC_OWNER, MISC_MASTER, MISC_OP); else { dprintf(idx, "%s %s%d: (* = %s, + = %s, @ = %s)\n", BOT_PEOPLEONCHAN, (chan < GLOBAL_CHANS) ? "" : "*", chan % GLOBAL_CHANS, MISC_OWNER, MISC_MASTER, MISC_OP); } /* calculate max nicklen */ nicklen = 0; for (i = 0; i < dcc_total; i++) { if(strlen(dcc[i].nick) > (size_t) nicklen) nicklen = strlen(dcc[i].nick); } if(nicklen < 9) nicklen = 9; for (i = 0; i < dcc_total; i++) if (dcc[i].type == &DCC_CHAT) if (dcc[i].u.chat->channel == chan) { if (atr & USER_OWNER) { egg_snprintf(format, sizeof format, " [%%.2lu] %%c%%-%us %%s", nicklen); sprintf(s, format, dcc[i].sock, (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick, dcc[i].host); } else { egg_snprintf(format, sizeof format, " %%c%%-%us %%s", nicklen); sprintf(s, format, (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick, dcc[i].host); } if (atr & USER_MASTER) { if (dcc[i].u.chat->con_flags) sprintf(&s[strlen(s)], " (con:%s)", masktype(dcc[i].u.chat->con_flags)); } if (now - dcc[i].timeval > 300) { unsigned long mydays, hrs, mins; mydays = (now - dcc[i].timeval) / 86400; hrs = ((now - dcc[i].timeval) - (mydays * 86400)) / 3600; mins = ((now - dcc[i].timeval) - (hrs * 3600)) / 60; if (mydays > 0) sprintf(&s[strlen(s)], " (idle %lud%luh)", mydays, hrs); else if (hrs > 0) sprintf(&s[strlen(s)], " (idle %luh%lum)", hrs, mins); else sprintf(&s[strlen(s)], " (idle %lum)", mins); } dprintf(idx, "%s\n", s); if (dcc[i].u.chat->away != NULL) dprintf(idx, " AWAY: %s\n", dcc[i].u.chat->away); } for (i = 0; i < dcc_total; i++) if (dcc[i].type == &DCC_BOT) { if (!ok) { ok = 1; dprintf(idx, "Bots connected:\n"); } egg_strftime(s, 20, "%d %b %H:%M %Z", gmtime(&dcc[i].timeval)); s[20] = 0; if (atr & USER_OWNER) { egg_snprintf(format, sizeof format, " [%%.2lu] %%s%%c%%-%us (%%s) %%s\n", nicklen); dprintf(idx, format, dcc[i].sock, dcc[i].status & STAT_CALLED ? "<-" : "->", dcc[i].status & STAT_SHARE ? '+' : ' ', dcc[i].nick, s, dcc[i].u.bot->version); } else { egg_snprintf(format, sizeof format, " %%s%%c%%-%us (%%s) %%s\n", nicklen); dprintf(idx, format, dcc[i].status & STAT_CALLED ? "<-" : "->", dcc[i].status & STAT_SHARE ? '+' : ' ', dcc[i].nick, s, dcc[i].u.bot->version); } } ok = 0; for (i = 0; i < dcc_total; i++) { if ((dcc[i].type == &DCC_CHAT) && (dcc[i].u.chat->channel != chan)) { if (!ok) { ok = 1; dprintf(idx, "Other people on the bot:\n"); } if (atr & USER_OWNER) { egg_snprintf(format, sizeof format, " [%%.2lu] %%c%%-%us ", nicklen); sprintf(s, format, dcc[i].sock, (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick); } else { egg_snprintf(format, sizeof format, " %%c%%-%us ", nicklen); sprintf(s, format, (geticon(i) == '-' ? ' ' : geticon(i)), dcc[i].nick); } if (atr & USER_MASTER) { if (dcc[i].u.chat->channel < 0) strcat(s, "(-OFF-) "); else if (!dcc[i].u.chat->channel) strcat(s, "(party) "); else sprintf(&s[strlen(s)], "(%5d) ", dcc[i].u.chat->channel); } strcat(s, dcc[i].host); if (atr & USER_MASTER) { if (dcc[i].u.chat->con_flags) sprintf(&s[strlen(s)], " (con:%s)", masktype(dcc[i].u.chat->con_flags)); } if (now - dcc[i].timeval > 300) { k = (now - dcc[i].timeval) / 60; if (k < 60) sprintf(&s[strlen(s)], " (idle %dm)", k); else sprintf(&s[strlen(s)], " (idle %dh%dm)", k / 60, k % 60); } dprintf(idx, "%s\n", s); if (dcc[i].u.chat->away != NULL) dprintf(idx, " AWAY: %s\n", dcc[i].u.chat->away); } if ((atr & USER_MASTER) && (dcc[i].type->flags & DCT_SHOWWHO) && (dcc[i].type != &DCC_CHAT)) { if (!ok) { ok = 1; dprintf(idx, "Other people on the bot:\n"); } if (atr & USER_OWNER) { egg_snprintf(format, sizeof format, " [%%.2lu] %%c%%-%us (files) %%s", nicklen); sprintf(s, format, dcc[i].sock, dcc[i].status & STAT_CHAT ? '+' : ' ', dcc[i].nick, dcc[i].host); } else { egg_snprintf(format, sizeof format, " %%c%%-%us (files) %%s", nicklen); sprintf(s, format, dcc[i].status & STAT_CHAT ? '+' : ' ', dcc[i].nick, dcc[i].host); } dprintf(idx, "%s\n", s); } } } #endif /* HUB */ static void cmd_whom(struct userrec *u, int idx, char *par) { if (par[0] == '*') { putlog(LOG_CMDS, "*", "#%s# whom %s", dcc[idx].nick, par); answer_local_whom(idx, -1); return; } else if (dcc[idx].u.chat->channel < 0) { dprintf(idx, "You have chat turned off.\n"); return; } putlog(LOG_CMDS, "*", "#%s# whom %s", dcc[idx].nick, par); if (!par[0]) { answer_local_whom(idx, dcc[idx].u.chat->channel); } else { int chan = -1; if ((par[0] < '0') || (par[0] > '9')) { if (chan <= 0) { dprintf(idx, "No such channel exists.\n"); return; } } else chan = atoi(par); if ((chan < 0) || (chan > 99999)) { dprintf(idx, "Channel number out of range: must be between 0 and 99999.\n"); return; } answer_local_whom(idx, chan); } } #ifdef HUB /* .config Usage + available entry list .config name Show current value + description .config name value Set */ static void cmd_config(struct userrec *u, int idx, char *par) { char *name = NULL; struct cfg_entry *cfgent = NULL; int cnt, i; putlog(LOG_CMDS, "*", "#%s# config %s", dcc[idx].nick, par); if (!par[0]) { char *outbuf = NULL; outbuf = calloc(1, 1); dprintf(idx, "Usage: config [name [value|-]]\n"); dprintf(idx, "Defined config entry names:\n"); cnt = 0; for (i = 0; i < cfg_count; i++) { if ((cfg[i]->flags & CFGF_GLOBAL) && (cfg[i]->describe)) { if (!cnt) { outbuf = realloc(outbuf, 2 + 1); sprintf(outbuf, " "); } outbuf = realloc(outbuf, strlen(outbuf) + strlen(cfg[i]->name) + 1 + 1); sprintf(outbuf, "%s%s ", outbuf, cfg[i]->name); cnt++; if (cnt == 10) { dprintf(idx, "%s\n", outbuf); cnt = 0; } } } if (cnt) dprintf(idx, "%s\n", outbuf); if (outbuf) free(outbuf); return; } name = newsplit(&par); for (i = 0; !cfgent && (i < cfg_count); i++) if (!strcmp(cfg[i]->name, name)) cfgent = cfg[i]; if (!cfgent || !cfgent->describe) { dprintf(idx, "No such config entry\n"); return; } if (!isowner(u->handle)) { int no = 0; if (!egg_strcasecmp(name, "authkey")) no++; if (!egg_strcasecmp(name, "cmdprefix")) no++; if (!egg_strcasecmp(name, "hijack")) no++; if (!egg_strcasecmp(name, "bad-cookie")) no++; if (!egg_strcasecmp(name, "manop")) no++; if (no) { dprintf(idx, "Only permanent owners may change '%s'.\n", name); return; } } if (!par[0]) { cfgent->describe(cfgent, idx); if (!cfgent->gdata) dprintf(idx, "No current value\n"); else { dprintf(idx, "Currently: %s\n", cfgent->gdata); } return; } if (strlen(par) >= 2048) { dprintf(idx, "Value can't be longer than 2048 chars"); return; } set_cfg_str(NULL, cfgent->name, par); if (!cfgent->gdata) dprintf(idx, "Now: (not set)\n"); else { dprintf(idx, "Now: %s\n", cfgent->gdata); } #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_botconfig(struct userrec *u, int idx, char *par) { struct userrec *u2 = NULL; char *p = NULL; struct xtra_key *k = NULL; struct cfg_entry *cfgent = NULL; int i, cnt; /* botconfig bot [name [value]] */ putlog(LOG_CMDS, "*", "#%s# botconfig %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: botconfig bot [name [value|-]]\n"); cnt = 0; for (i = 0; i < cfg_count; i++) { if (cfg[i]->flags & CFGF_LOCAL) { dprintf(idx, "%s ", cfg[i]->name); cnt++; if (cnt == 10) { dprintf(idx, "\n"); cnt=0; } } } if (cnt > 0) dprintf(idx, "\n"); return; } p = newsplit(&par); u2 = get_user_by_handle(userlist, p); if (!u2) { dprintf(idx, "No such user.\n"); return; } if (!u2->bot) { dprintf(idx, "%s isn't a bot.\n", p); return; } if (!par[0]) { for (i = 0; i < cfg_count; i++) { if ((cfg[i]->flags & CFGF_LOCAL) && (cfg[i]->describe)) { k = get_user(&USERENTRY_CONFIG, u2); while (k && strcmp(k->key, cfg[i]->name)) k=k->next; if (k) dprintf(idx, " %s: %s\n", k->key, k->data); else dprintf(idx, " %s: (not set)\n", cfg[i]->name); } } return; } p = newsplit(&par); cfgent = NULL; for (i = 0; !cfgent && (i < cfg_count); i++) if (!strcmp(cfg[i]->name, p) && (cfg[i]->flags & CFGF_LOCAL) && (cfg[i]->describe)) cfgent=cfg[i]; if (!cfgent) { dprintf(idx, "No such configuration value\n"); return; } if (par[0]) { char tmp[100] = ""; set_cfg_str(u2->handle, cfgent->name, (strcmp(par, "-")) ? par : NULL); egg_snprintf(tmp, sizeof tmp, "%s %s", cfgent->name, par); update_mod(u2->handle, dcc[idx].nick, "botconfig", tmp); dprintf(idx, "Now: "); #ifdef HUB write_userfile(idx); #endif /* HUB */ } else { if (cfgent->describe) cfgent->describe(cfgent, idx); } k = get_user(&USERENTRY_CONFIG, u2); while (k && strcmp(k->key, cfgent->name)) k = k->next; if (k) dprintf(idx, " %s: %s\n", k->key, k->data); else dprintf(idx, " %s: (not set)\n", cfgent->name); } static void cmd_cmdpass(struct userrec *u, int idx, char *par) { bind_entry_t *entry = NULL; bind_table_t *table = NULL; char *cmd = NULL, *pass = NULL; int i, l = 0; /* cmdpass [command [newpass]] */ table = bind_table_lookup("dcc"); cmd = newsplit(&par); putlog(LOG_CMDS, "*", "#%s# cmdpass %s ...", dcc[idx].nick, cmd[0] ? cmd : ""); pass = newsplit(&par); if (!cmd[0] || par[0]) { dprintf(idx, "Usage: %scmdpass [password]\n", dcc_prefix); dprintf(idx, " if no password is specified, the commands password is reset\n"); return; } for (i = 0; cmd[i]; i++) cmd[i] = tolower(cmd[i]); /* need to check for leaf cmds, and set l > 0 here */ if (!l) { int found = 0; for (entry = table->entries; entry && entry->next; entry = entry->next) { if (!egg_strcasecmp(cmd, entry->mask)) { found++; break; } } if (!found) { dprintf(idx, "No such DCC command\n"); return; } } if (pass[0]) { char epass[36] = "", tmp[256] = ""; if (!isowner(u->handle) && has_cmd_pass(cmd)) { putlog(LOG_MISC, "*", "%s attempted to change command password for %s - not perm owner", dcc[idx].nick, cmd); dprintf(idx, "Perm owners only.\n"); return; } encrypt_pass(pass, epass); egg_snprintf(tmp, sizeof tmp, "%s %s", cmd, epass); if (has_cmd_pass(cmd)) dprintf(idx, "Changed command password for %s\n", cmd); else dprintf(idx, "Set command password for %s to '%s'\n", cmd, pass); set_cmd_pass(tmp, 1); } else { if (!isowner(u->handle)) { putlog(LOG_MISC, "*", "%s attempted to remove command password for %s - not perm owner", dcc[idx].nick, cmd); dprintf(idx, "Perm owners only.\n"); return; } set_cmd_pass(cmd, 1); dprintf(idx, "Removed command password for %s\n", cmd); } #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_lagged(struct userrec *u, int idx, char *par) { /* Lists botnet lag to *directly connected* bots */ int i; putlog(LOG_CMDS, "*", "#%s# lagged %s", u->handle, par); for (i = 0; i < dcc_total; i++) { if (dcc[i].type == &DCC_BOT) { dprintf(idx, "%9s - %li seconds\n", dcc[i].nick, (dcc[i].pingtime > 120) ? (now - dcc[i].pingtime) : dcc[i].pingtime); } } } #endif /* HUB */ static void cmd_me(struct userrec *u, int idx, char *par) { int i; if (dcc[idx].u.chat->channel < 0) { dprintf(idx, "You have chat turned off.\n"); return; } if (!par[0]) { dprintf(idx, "Usage: me \n"); return; } if (dcc[idx].u.chat->away != NULL) not_away(idx); for (i = 0; i < dcc_total; i++) if ((dcc[i].type->flags & DCT_CHAT) && (dcc[i].u.chat->channel == dcc[idx].u.chat->channel) && ((i != idx) || (dcc[i].status & STAT_ECHO))) dprintf(i, "* %s %s\n", dcc[idx].nick, par); botnet_send_act(idx, conf.bot->nick, dcc[idx].nick, dcc[idx].u.chat->channel, par); } static void cmd_motd(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# motd %s", dcc[idx].nick, par); if (par[0] && (u->flags & USER_MASTER)) { char *s = NULL; size_t size; size = strlen(par) + 1 + strlen(dcc[idx].nick) + 10 + 1 + 1; s = calloc(1, size); /* +2: ' 'x2 */ egg_snprintf(s, size, "%s %li %s", dcc[idx].nick, now, par); set_cfg_str(NULL, "motd", s); free(s); dprintf(idx, "Motd set\n"); #ifdef HUB write_userfile(idx); #endif /* HUB */ } else { show_motd(idx); } } static void cmd_about(struct userrec *u, int idx, char *par) { char c[80] = ""; putlog(LOG_CMDS, "*", "#%s# about", dcc[idx].nick); dprintf(idx, STR("Wraith botpack by bryan\n")); egg_strftime(c, sizeof c, "%c %Z", gmtime(&buildts)); dprintf(idx, "Version: %s\n", egg_version); dprintf(idx, "Build: %s (%li)\n", c, buildts); dprintf(idx, STR("(written from a base of Eggdrop 1.6.12)\n")); dprintf(idx, "..with credits and thanks to the following:\n"); dprintf(idx, " \n"); dprintf(idx, STR(" * Eggdev for eggdrop obviously\n")); dprintf(idx, STR(" * $bryguy$b for beta testing, providing code, finding bugs, and providing input.\n")); dprintf(idx, STR(" * $bSFC$b for providing compile shells, continuous input, feature suggestions, and testing.\n")); dprintf(idx, STR(" * $bxmage$b for beta testing.\n")); dprintf(idx, STR(" * $bpasswd$b for beta testing, and his dedication to finding bugs.\n")); dprintf(idx, STR(" * $bextort$b for finding misc bugs.\n")); dprintf(idx, STR(" * $bpgpkeys$b for finding bugs, and providing input.\n")); dprintf(idx, STR(" * $bqFox$b for providing an mIRC $md5() alias, not requiring a dll or >6.03\n")); dprintf(idx, STR(" * $bSith_Lord$b helping test ipv6 on the bot (admin@elitepackets.com)\n")); dprintf(idx, STR(" * $bExcelsior$b for finding a bug on BSD with the ipv6, and for celdrop which inspired many features.\n")); dprintf(idx, STR(" * $bsyt$b for giving me inspiration to code a more secure bot.\n")); dprintf(idx, STR(" * $Blackjac$b for helping with the bx auth script with his Sentinel script.\n")); dprintf(idx, STR(" * $bMystikal$b for various bugs\n")); dprintf(idx, " \n"); dprintf(idx, STR("The botpack ghost inspired the early versions of wraith and the current config system.\n")); dprintf(idx, STR("* einride\n")); dprintf(idx, STR("* ievil\n")); dprintf(idx, "\n"); dprintf(idx, STR("The following botpacks gave me inspiration and ideas (no code):\n")); dprintf(idx, STR(" * $uawptic$u by $blordoptic$b\n")); dprintf(idx, STR(" * $uoptikz$u by $bryguy$b and $blordoptic$b\n")); dprintf(idx, STR(" * $uceldrop$u by $bexcelsior$b\n")); dprintf(idx, STR(" * $ugenocide$u by $Crazi$b, $bDor$b, $bpsychoid$b, and $bAce24$b\n")); dprintf(idx, STR(" * $utfbot$u by $bwarknite$b and $bloslinux$b\n")); } static void cmd_addline(struct userrec *user, int idx, char *par) { struct userrec *u = NULL; struct list_type *q = NULL; char *hostbuf = NULL, *outbuf = NULL; if (!par[0]) { dprintf(idx, "Usage: addline \n"); return; } putlog(LOG_CMDS, "*", "#%s# addline %s", dcc[idx].nick, par); u = get_user_by_handle(userlist, par); if (!u || (u && !whois_access(user, u))) { dprintf(idx, "No such user.\n"); return; } q = get_user(&USERENTRY_HOSTS, u); hostbuf = calloc(1, 1); for (; q; q = q->next) { hostbuf = realloc(hostbuf, strlen(hostbuf) + strlen(q->extra) + 2); strcat(hostbuf, q->extra); strcat(hostbuf, " "); } outbuf = calloc(1, strlen(hostbuf) + strlen(u->handle) + 20); sprintf(outbuf, "Addline: +user %s %s", u->handle, hostbuf); dumplots(idx, "", outbuf); free(hostbuf); free(outbuf); } static void cmd_away(struct userrec *u, int idx, char *par) { if (strlen(par) > 60) par[60] = 0; set_away(idx, par); } static void cmd_back(struct userrec *u, int idx, char *par) { not_away(idx); } static void cmd_newpass(struct userrec *u, int idx, char *par) { char *new = NULL, pass[16] = ""; putlog(LOG_CMDS, "*", "#%s# newpass...", dcc[idx].nick); if (!par[0]) { dprintf(idx, "Usage: newpass \n"); return; } new = newsplit(&par); if (!strcmp(new, "rand")) { make_rand_str(pass, 15); } else { if (strlen(new) < 6) { dprintf(idx, "Please use at least 6 characters.\n"); return; } else { egg_snprintf(pass, sizeof pass, "%s", new); } } if (strlen(pass) > 15) pass[15] = 0; if (!goodpass(pass, idx, NULL)) return; set_user(&USERENTRY_PASS, u, pass); dprintf(idx, "Changed your password to: %s\n", pass); #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_secpass(struct userrec *u, int idx, char *par) { char *new = NULL, pass[16] = ""; putlog(LOG_CMDS, "*", "#%s# secpass...", dcc[idx].nick); if (!par[0]) { dprintf(idx, "Usage: secpass \nIf you use \"rand\" as the secpass, a random pass will be chosen.\n"); return; } new = newsplit(&par); if (!strcmp(new, "rand")) { make_rand_str(pass, 15); } else { if (strlen(new) < 6) { dprintf(idx, "Please use at least 6 characters.\n"); return; } else { egg_snprintf(pass, sizeof pass, "%s", new); } } if (strlen(pass) > 15) pass[15] = 0; set_user(&USERENTRY_SECPASS, u, pass); dprintf(idx, "Changed your secpass to: %s\n", pass); #ifdef HUB write_userfile(idx); #endif /* HUB */ } #ifdef HUB static void cmd_bots(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# bots", dcc[idx].nick); tell_bots(idx, 1); } static void cmd_downbots(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# downbots", dcc[idx].nick); tell_bots(idx, 0); } static void cmd_bottree(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# bottree", dcc[idx].nick); tell_bottree(idx); } #endif /* HUB */ int my_cmp (const mycmds *c1, const mycmds *c2) { return strcmp (c1->name, c2->name); } static void cmd_nohelp(struct userrec *u, int idx, char *par) { int i; char *buf = NULL; buf = calloc(1, 1); qsort(cmdlist, cmdi, sizeof(mycmds), (int (*)()) &my_cmp); for (i = 0; i < cmdi; i++) { int o, found = 0; for (o = 0; (help[o].cmd) && (help[o].desc); o++) if (!egg_strcasecmp(help[o].cmd, cmdlist[i].name)) found++; if (!found) { buf = realloc(buf, strlen(buf) + 2 + strlen(cmdlist[i].name) + 1); strcat(buf, cmdlist[i].name); strcat(buf, ", "); } } buf[strlen(buf) - 1] = 0; dumplots(idx, "", buf); } int findhelp(const char *cmd) { int hi; for (hi = 0; (help[hi].cmd) && (help[hi].desc); hi++) if (!egg_strcasecmp(cmd, help[hi].cmd)) return hi; return 0; } static void cmd_help(struct userrec *u, int idx, char *par) { char flg[100] = "", *fcats = NULL, temp[100] = "", buf[2046] = "", match[20] = ""; int fnd = 0, done = 0, nowild = 0; struct flag_record fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 }; egg_snprintf(temp, sizeof temp, "a|- a|a n|- n|n m|- m|m mo|o m|o i|- o|o o|- p|- -|-"); fcats = temp; putlog(LOG_CMDS, "*", "#%s# help %s", dcc[idx].nick, par); get_user_flagrec(u, &fr, NULL); build_flags(flg, &fr, NULL); if (!par[0]) { sprintf(match, "*"); } else { if (!strchr(par, '*') && !strchr(par, '?')) nowild++; egg_snprintf(match, sizeof match, "%s", newsplit(&par)); } if (!nowild) dprintf(idx, "Showing help topics matching '%s' for flags: (%s)\n", match, flg); qsort(cmdlist, cmdi, sizeof(mycmds), (int (*)()) &my_cmp); /* even if we have nowild, we loop to conserve code/space */ while (!done) { int i = 0, end = 0, first = 1, n, hi = 0; char *flag = NULL; flag = newsplit(&fcats); if (!flag[0]) done = 1; for (n = 0; n < cmdi; n++) { /* loop each command */ if (!flagrec_ok(&cmdlist[n].flags, &fr) || !wild_match(match, (char *) cmdlist[n].name)) continue; fnd++; if (nowild) { flg[0] = 0; build_flags(flg, &(cmdlist[n].flags), NULL); dprintf(idx, "Showing you help for '%s' (%s):\n", match, flg); if ((hi = findhelp(match))) { if (help[hi].garble) showhelp(idx, &fr, degarble(help[hi].garble, help[hi].desc)); else showhelp(idx, &fr, help[hi].desc); } done = 1; break; } else { flg[0] = 0; build_flags(flg, &(cmdlist[n].flags), NULL); if (!strcmp(flg, flag)) { if (first) { dprintf(idx, "%s\n", buf[0] ? buf : ""); dprintf(idx, "# DCC (%s)\n", flag); sprintf(buf, " "); } if (end && !first) { dprintf(idx, "%s\n", buf[0] ? buf : ""); /* we dumped the buf to dprintf, now start a new one... */ sprintf(buf, " "); } sprintf(buf, "%s%-14.14s", buf[0] ? buf : "", cmdlist[n].name); first = 0; end = 0; i++; } if (i >= 5) { end = 1; i = 0; } } } } if (buf && buf[0]) dprintf(idx, "%s\n", buf); if (fnd) dprintf(idx, "--End help listing\n"); if (!strcmp(match, "*")) { dprintf(idx, "For individual command help, type: %shelp \n", dcc_prefix); } else if (!fnd) { dprintf(idx, "No match for '%s'.\n", match); } dprintf(idx, "Some commands may require you to '%sconsole #chan' to a chan you have flags on first.\n", dcc_prefix); } static void cmd_addlog(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# addlog %s", dcc[idx].nick, par); putlog(LOG_MISC, "*", "%s: %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: addlog \n"); return; } dprintf(idx, "Placed entry in the log file.\n"); } #ifdef HUB static void cmd_who(struct userrec *u, int idx, char *par) { int i; if (par[0]) { if (dcc[idx].u.chat->channel < 0) { dprintf(idx, "You have chat turned off.\n"); return; } putlog(LOG_CMDS, "*", "#%s# who %s", dcc[idx].nick, par); if (!egg_strcasecmp(par, conf.bot->nick)) tell_who(u, idx, dcc[idx].u.chat->channel); else { i = nextbot(par); if (i < 0) { dprintf(idx, "That bot isn't connected.\n"); } else if (dcc[idx].u.chat->channel > 99999) dprintf(idx, "You are on a local channel.\n"); else { char s[40] = ""; simple_sprintf(s, "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick); botnet_send_who(i, s, par, dcc[idx].u.chat->channel); } } } else { putlog(LOG_CMDS, "*", "#%s# who", dcc[idx].nick); if (dcc[idx].u.chat->channel < 0) tell_who(u, idx, 0); else tell_who(u, idx, dcc[idx].u.chat->channel); } } #endif /* HUB */ static void cmd_whois(struct userrec *u, int idx, char *par) { if (!par[0]) { dprintf(idx, "Usage: whois \n"); return; } putlog(LOG_CMDS, "*", "#%s# whois %s", dcc[idx].nick, par); tell_user_ident(idx, par); } static void match(struct userrec *u, int idx, char *par, int isbot) { int start = 1, limit = 20; char *s = NULL, *s1 = NULL, *chname = NULL; putlog(LOG_CMDS, "*", "#%s# match%s %s", dcc[idx].nick, isbot ? "bot" : "", par); if (!par[0]) { dprintf(idx, "Usage: match%s <%snick/host> [[skip] count]\n", isbot ? "bot" : "", isbot ? "bot" : ""); return; } s = newsplit(&par); if (strchr(CHANMETA, par[0]) != NULL) chname = newsplit(&par); else chname = ""; if (atoi(par) > 0) { s1 = newsplit(&par); if (atoi(par) > 0) { start = atoi(s1); limit = atoi(par); } else limit = atoi(s1); } tell_users_match(idx, s, start, limit, chname, isbot); } static void cmd_matchbot(struct userrec *u, int idx, char *par) { match(u, idx, par, 1); } static void cmd_match(struct userrec *u, int idx, char *par) { match(u, idx, par, 0); } static void cmd_update(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# update %s", dcc[idx].nick, par); #ifdef LEAF if (!localhub) dprintf(idx, "Please use this command on the first listed in the conf for this user@box\n"); #endif /* LEAF */ if (!par[0]) dprintf(idx, "Usage: update \n"); updatebin(idx, par, 0); } static void cmd_uptime(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# uptime", dcc[idx].nick); tell_verbose_uptime(idx); } static void cmd_userlist(struct userrec *u, int idx, char *par) { int cnt = 0, tt = 0; putlog(LOG_CMDS, "*", "#%s# userlist", dcc[idx].nick); for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u) && u->bot && (u->flags & USER_CHANHUB)) { if (cnt) dprintf(idx, ", "); else dprintf(idx, "Chathubs: "); dprintf(idx, u->handle); cnt++; tt++; if (cnt == 15) { dprintf(idx, "\n"); cnt=0; } } } if (cnt) dprintf(idx, "\n"); cnt = 0; #ifdef HUB for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u) && !u->bot && (u->flags & USER_ADMIN)) { if (cnt) dprintf(idx, ", "); else dprintf(idx, "Admins : "); dprintf(idx, u->handle); cnt++; tt++; if (cnt == 15) { dprintf(idx, "\n"); cnt = 0; } } } if (cnt) dprintf(idx, "\n"); cnt = 0; for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u) && !u->bot && !(u->flags & USER_ADMIN) && (u->flags & USER_OWNER)) { if (cnt) dprintf(idx, ", "); else dprintf(idx, "Owners : "); dprintf(idx, u->handle); cnt++; tt++; if (cnt == 15) { dprintf(idx, "\n"); cnt = 0; } } } if (cnt) dprintf(idx, "\n"); cnt = 0; for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u) && !u->bot && !(u->flags & USER_OWNER) && (u->flags & USER_MASTER)) { if (cnt) dprintf(idx, ", "); else dprintf(idx, "Masters : "); dprintf(idx, u->handle); cnt++; tt++; if (cnt == 15) { dprintf(idx, "\n"); cnt = 0; } } } if (cnt) dprintf(idx, "\n"); cnt = 0; #endif /* HUB */ for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u)) { #ifdef HUB if (!u->bot && !(u->flags & USER_MASTER) && (u->flags & USER_OP)) { #else /* !HUB */ if (!u->bot && (u->flags & USER_OP)) { #endif /* HUB */ if (cnt) dprintf(idx, ", "); else dprintf(idx, "Ops : "); dprintf(idx, u->handle); cnt++; tt++; if (cnt == 15) { dprintf(idx, "\n"); cnt= 0 ; } } } } if (cnt) dprintf(idx, "\n"); cnt = 0; for (u = userlist; u; u = u->next) { if (whois_access(dcc[idx].user, u) && !u->bot && !(u->flags & USER_OP)) { if (cnt) dprintf(idx, ", "); else dprintf(idx, "Users : "); dprintf(idx, u->handle); cnt++; tt++; if (cnt==15) { dprintf(idx, "\n"); cnt = 0; } } } if (cnt) dprintf(idx, "\n"); cnt = 0; dprintf(idx, "Total users: %d\n", tt); } static void cmd_channels(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# channels %s", dcc[idx].nick, par); if (par[0] && (u->flags & USER_MASTER)) { struct userrec *user = NULL; user = get_user_by_handle(userlist, par); if (user && whois_access(u, user)) { show_channels(idx, par); } else { dprintf(idx, "There is no user by that name.\n"); } } else { show_channels(idx, NULL); } if ((u->flags & USER_MASTER) && !(par && par[0])) dprintf(idx, "You can also %schannels \n", dcc_prefix); } int dns_report(int, int); void channels_report(int, int); void transfer_report(int, int); void share_report(int, int); void update_report(int, int); void notes_report(int, int); static void cmd_status(struct userrec *u, int idx, char *par) { int atr = u ? u->flags : 0, all = 0; if (!egg_strcasecmp(par, "all")) { if (!(atr & USER_MASTER)) { dprintf(idx, "You do not have Bot Master privileges.\n"); return; } putlog(LOG_CMDS, "*", "#%s# status all", dcc[idx].nick); tell_verbose_status(idx); dprintf(idx, "\n"); tell_settings(idx); all++; } else { putlog(LOG_CMDS, "*", "#%s# status", dcc[idx].nick); tell_verbose_status(idx); } dns_report(idx, all); #ifdef LEAF server_report(idx, all); irc_report(idx, all); #endif /* LEAF */ channels_report(idx, all); transfer_report(idx, all); share_report(idx, all); update_report(idx, all); notes_report(idx, all); } static void cmd_dccstat(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# dccstat", dcc[idx].nick); tell_dcc(idx); } static void cmd_boot(struct userrec *u, int idx, char *par) { char *who = NULL; int i, ok = 0; struct userrec *u2 = NULL; if (!par[0]) { dprintf(idx, "Usage: boot nick[@bot]\n"); return; } who = newsplit(&par); if (strchr(who, '@') != NULL) { char whonick[HANDLEN + 1]; splitcn(whonick, who, '@', HANDLEN + 1); if (!egg_strcasecmp(who, conf.bot->nick)) { cmd_boot(u, idx, whonick); return; } i = nextbot(who); if (i < 0) { dprintf(idx, "No such bot connected.\n"); return; } botnet_send_reject(i, dcc[idx].nick, conf.bot->nick, whonick, who, par[0] ? par : dcc[idx].nick); putlog(LOG_BOTS, "*", "#%s# boot %s@%s (%s)", dcc[idx].nick, whonick, who, par[0] ? par : dcc[idx].nick); return; } for (i = 0; i < dcc_total; i++) if (!egg_strcasecmp(dcc[i].nick, who) && !ok && (dcc[i].type->flags & DCT_CANBOOT)) { u2 = get_user_by_handle(userlist, dcc[i].nick); if (u2 && (u2->flags & USER_OWNER) && egg_strcasecmp(dcc[idx].nick, who)) { dprintf(idx, "You can't boot a bot owner.\n"); return; } if (u2 && (u2->flags & USER_MASTER) && !(u && (u->flags & USER_MASTER))) { dprintf(idx, "You can't boot a bot master.\n"); return; } dprintf(idx, "Booted %s from the party line.\n", dcc[i].nick); putlog(LOG_CMDS, "*", "#%s# boot %s %s", dcc[idx].nick, who, par); do_boot(i, dcc[idx].nick, par); ok = 1; } if (!ok) dprintf(idx, "Who? No such person on the party line.\n"); } static void cmd_console(struct userrec *u, int idx, char *par) { char *nick = NULL, s[2] = "", s1[512] = ""; int dest = 0, i, ok = 0, pls, md; struct flag_record fr = {FR_GLOBAL | FR_CHAN, 0, 0, 0 }; struct chanset_t *chan = NULL; if (!par[0]) { dprintf(idx, "Your console is %s: %s (%s).\n", dcc[idx].u.chat->con_chan, masktype(dcc[idx].u.chat->con_flags), maskname(dcc[idx].u.chat->con_flags)); return; } get_user_flagrec(u, &fr, dcc[idx].u.chat->con_chan); strcpy(s1, par); nick = newsplit(&par); /* Don't remove '+' as someone couldn't have '+' in CHANMETA cause * he doesn't use IRCnet ++rtc. */ if (nick[0] && !strchr(CHANMETA "+-*", nick[0]) && glob_master(fr)) { for (i = 0; i < dcc_total; i++) if (!egg_strcasecmp(nick, dcc[i].nick) && (dcc[i].type == &DCC_CHAT) && (!ok)) { ok = 1; dest = i; } if (!ok) { dprintf(idx, "No such user on the party line!\n"); return; } nick[0] = 0; } else dest = idx; if (!nick[0]) nick = newsplit(&par); /* Consider modeless channels, starting with '+' */ if ((nick [0] == '+' && findchan_by_dname(nick)) || (nick [0] != '+' && strchr(CHANMETA "*", nick[0]))) { chan = findchan_by_dname(nick); if (strcmp(nick, "*") && !chan) { dprintf(idx, "Invalid console channel: %s.\n", nick); return; } get_user_flagrec(u, &fr, nick); if (strcmp(nick, "*") && private(fr, findchan_by_dname(nick), PRIV_OP)) { dprintf(idx, "Invalid console channel: %s.\n", nick); return; } if (!chk_op(fr, findchan_by_dname(nick))) { dprintf(idx, "You don't have op or master access to channel %s.\n", nick); return; } strncpyz(dcc[dest].u.chat->con_chan, nick, 81); nick[0] = 0; if ((dest == idx) && !glob_master(fr) && !chan_master(fr)) /* Consoling to another channel for self */ dcc[dest].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS | LOG_WALL); } if (!nick[0]) nick = newsplit(&par); pls = 1; if (nick[0]) { if ((nick[0] != '+') && (nick[0] != '-')) dcc[dest].u.chat->con_flags = 0; for (; *nick; nick++) { if (*nick == '+') pls = 1; else if (*nick == '-') pls = 0; else { s[0] = *nick; s[1] = 0; md = logmodes(s); if ((dest == idx) && !glob_master(fr) && pls) { if (chan_master(fr)) md &= ~(LOG_FILES | LOG_DEBUG); else md &= ~(LOG_MISC | LOG_CMDS | LOG_FILES | LOG_WALL | LOG_DEBUG); } if (!glob_owner(fr) && pls) md &= ~(LOG_RAW | LOG_SRVOUT | LOG_BOTNET | LOG_BOTSHARE | LOG_ERRORS | LOG_GETIN | LOG_WARN); if (!glob_master(fr) && pls) md &= ~LOG_BOTS; if (pls) dcc[dest].u.chat->con_flags |= md; else dcc[dest].u.chat->con_flags &= ~md; } } } putlog(LOG_CMDS, "*", "#%s# console %s", dcc[idx].nick, s1); if (dest == idx) { dprintf(idx, "Set your console to %s: %s (%s).\n", dcc[idx].u.chat->con_chan, masktype(dcc[idx].u.chat->con_flags), maskname(dcc[idx].u.chat->con_flags)); } else { dprintf(idx, "Set console of %s to %s: %s (%s).\n", dcc[dest].nick, dcc[dest].u.chat->con_chan, masktype(dcc[dest].u.chat->con_flags), maskname(dcc[dest].u.chat->con_flags)); dprintf(dest, "%s set your console to %s: %s (%s).\n", dcc[idx].nick, dcc[dest].u.chat->con_chan, masktype(dcc[dest].u.chat->con_flags), maskname(dcc[dest].u.chat->con_flags)); } console_dostore(dest); } static void cmd_date(struct userrec *u, int idx, char *par) { char date[50] = ""; time_t hub; putlog(LOG_CMDS, "*", "#%s# date", dcc[idx].nick); egg_strftime(date, sizeof date, "%c %Z", localtime(&now)); dprintf(idx, "%s (local shell time)\n", date); egg_strftime(date, sizeof date, "%c %Z", gmtime(&now)); dprintf(idx, "%s <-- This time is use don the bot.\n", date); hub = now + timesync; egg_strftime(date, sizeof date, "%c %Z", gmtime(&hub)); dprintf(idx, "%s <-- Botnet uses this\n", date); } #ifdef HUB static void cmd_chhandle(struct userrec *u, int idx, char *par) { char hand[HANDLEN + 1] = "", newhand[HANDLEN + 1] = ""; int atr = u ? u->flags : 0, atr2; size_t i; struct userrec *u2 = NULL; strncpyz(hand, newsplit(&par), sizeof hand); strncpyz(newhand, newsplit(&par), sizeof newhand); if (!hand[0] || !newhand[0]) { dprintf(idx, "Usage: chhandle \n"); return; } for (i = 0; i < strlen(newhand); i++) if ((newhand[i] <= 32) || (newhand[i] >= 127) || (newhand[i] == '@')) newhand[i] = '?'; if (strchr(BADHANDCHARS, newhand[0]) != NULL) dprintf(idx, "Bizarre quantum forces prevent nicknames from starting with '%c'.\n", newhand[0]); else if (get_user_by_handle(userlist, newhand) && egg_strcasecmp(hand, newhand)) dprintf(idx, "Somebody is already using %s.\n", newhand); else { u2 = get_user_by_handle(userlist, hand); atr2 = u2 ? u2->flags : 0; if (!(atr & USER_MASTER) && !u2->bot) dprintf(idx, "You can't change handles for non-bots.\n"); else if (u2->bot && !(atr & USER_OWNER)) dprintf(idx, "You can't change a bot's nick.\n"); else if ((atr2 & USER_OWNER) && !(atr & USER_OWNER) && egg_strcasecmp(dcc[idx].nick, hand)) dprintf(idx, "You can't change a bot owner's handle.\n"); else if (isowner(hand) && egg_strcasecmp(dcc[idx].nick, hand)) dprintf(idx, "You can't change a permanent bot owner's handle.\n"); else if (!egg_strcasecmp(newhand, conf.bot->nick) && !(u2->bot || nextbot(hand) != -1)) dprintf(idx, "Hey! That's MY name!\n"); else if (change_handle(u2, newhand)) { putlog(LOG_CMDS, "*", "#%s# chhandle %s %s", dcc[idx].nick, hand, newhand); dprintf(idx, "Changed.\n"); } else dprintf(idx, "Failed.\n"); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } #endif /* HUB */ static void cmd_handle(struct userrec *u, int idx, char *par) { char oldhandle[HANDLEN + 1] = "", newhandle[HANDLEN + 1] = ""; size_t i; strncpy(newhandle, newsplit(&par), sizeof newhandle); if (!newhandle[0]) { dprintf(idx, "Usage: handle \n"); return; } for (i = 0; i < strlen(newhandle); i++) if ((newhandle[i] <= 32) || (newhandle[i] >= 127) || (newhandle[i] == '@')) newhandle[i] = '?'; if (strchr(BADHANDCHARS, newhandle[0]) != NULL) { dprintf(idx, "Bizarre quantum forces prevent handle from starting with '%c'.\n", newhandle[0]); } else if (get_user_by_handle(userlist, newhandle) && egg_strcasecmp(dcc[idx].nick, newhandle)) { dprintf(idx, "Somebody is already using %s.\n", newhandle); } else if (!egg_strcasecmp(newhandle, conf.bot->nick)) { dprintf(idx, "Hey! That's MY name!\n"); } else { strncpyz(oldhandle, dcc[idx].nick, sizeof oldhandle); if (change_handle(u, newhandle)) { putlog(LOG_CMDS, "*", "#%s# handle %s", oldhandle, newhandle); dprintf(idx, "Okay, changed.\n"); } else dprintf(idx, "Failed.\n"); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } #ifdef HUB static void cmd_chpass(struct userrec *u, int idx, char *par) { char *handle = NULL, *new = NULL, pass[16] = ""; int atr = u ? u->flags : 0, l; if (!par[0]) dprintf(idx, "Usage: chpass [password]\n"); else { handle = newsplit(&par); u = get_user_by_handle(userlist, handle); if (!u) dprintf(idx, "No such user.\n"); else if (!(atr & USER_MASTER) && !u->bot) dprintf(idx, "You can't change passwords for non-bots.\n"); else if (u->bot && !(atr & USER_OWNER)) dprintf(idx, "You can't change a bot's password.\n"); else if ((u->flags & USER_OWNER) && !(atr & USER_OWNER) && egg_strcasecmp(handle, dcc[idx].nick)) dprintf(idx, "You can't change a bot owner's password.\n"); else if (isowner(handle) && egg_strcasecmp(dcc[idx].nick, handle)) dprintf(idx, "You can't change a permanent bot owner's password.\n"); else if (!par[0]) { putlog(LOG_CMDS, "*", "#%s# chpass %s [nothing]", dcc[idx].nick, handle); set_user(&USERENTRY_PASS, u, NULL); dprintf(idx, "Removed password.\n"); } else { int good = 0; l = strlen(new = newsplit(&par)); if (l > 15) new[15] = 0; if (!strcmp(new, "rand")) { make_rand_str(pass, 15); good = 1; } else { if (goodpass(new, idx, NULL)) { egg_snprintf(pass, sizeof pass, "%s", new); good = 1; } } if (strlen(pass) > 15) pass[15] = 0; if (good) { set_user(&USERENTRY_PASS, u, pass); putlog(LOG_CMDS, "*", "#%s# chpass %s [something]", dcc[idx].nick, handle); dprintf(idx, "Password for '%s' changed to: %s\n", handle, pass); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } } } static void cmd_chsecpass(struct userrec *u, int idx, char *par) { char *handle = NULL, *new = NULL, pass[16] = ""; int atr = u ? u->flags : 0, l; if (!par[0]) dprintf(idx, "Usage: chsecpass [secpass/rand]\n"); else { handle = newsplit(&par); u = get_user_by_handle(userlist, handle); if (!u) dprintf(idx, "No such user.\n"); else if (!(atr & USER_MASTER) && !u->bot) dprintf(idx, "You can't change passwords for non-bots.\n"); else if (u->bot && !(atr & USER_OWNER)) dprintf(idx, "You can't change a bot's password.\n"); else if ((u->flags & USER_OWNER) && !(atr & USER_OWNER) && egg_strcasecmp(handle, dcc[idx].nick)) dprintf(idx, "You can't change a bot owner's secpass.\n"); else if (isowner(handle) && egg_strcasecmp(dcc[idx].nick, handle)) dprintf(idx, "You can't change a permanent bot owner's secpass.\n"); else if (!par[0]) { putlog(LOG_CMDS, "*", "#%s# chsecpass %s [nothing]", dcc[idx].nick, handle); set_user(&USERENTRY_SECPASS, u, NULL); dprintf(idx, "Removed secpass.\n"); } else { l = strlen(new = newsplit(&par)); if (l > 15) new[15] = 0; if (!strcmp(new, "rand")) { make_rand_str(pass, 15); } else { if (strlen(new) < 6) { dprintf(idx, "Please use at least 6 characters.\n"); return; } else { egg_snprintf(pass, sizeof pass, "%s", new); } } if (strlen(pass) > 15) pass[15] = 0; set_user(&USERENTRY_SECPASS, u, pass); putlog(LOG_CMDS, "*", "#%s# chsecpass %s [something]", dcc[idx].nick, handle); dprintf(idx, "Secpass for '%s' changed to: %s\n", handle, pass); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } } static void cmd_botcmd(struct userrec *u, int idx, char *par) { tand_t *tbot = NULL; int cnt = 0, rleaf = -1, tbots = 0, found = 0; char *botm = NULL, *cmd = NULL; botm = newsplit(&par); if (par[0]) cmd = newsplit(&par); if (!botm[0] || !cmd || (cmd && !cmd[0])) { dprintf(idx, "Usage: botcmd [params]\n"); return; } /* the rest of the cmd will be logged remotely */ putlog(LOG_CMDS, "*", "#%s# botcmd %s %s ...", dcc[idx].nick, botm, cmd); if (!strcmp(botm, "*") && (!strcmp(botm, "di") || !strcmp(botm, "die"))) { dprintf(idx, "Not a good idea.\n"); return; } if (!strcmp(botm, "?")) { for (tbot = tandbot; tbot; tbot = tbot->next) { if (bot_hublevel(get_user_by_handle(userlist, tbot->bot)) == 999) tbots++; } if (tbots) rleaf = 1 + randint(tbots); /* 1 <--> tbots */ } for (tbot = tandbot; tbot; tbot = tbot->next) { if (!strcmp(botm, "?") && bot_hublevel(get_user_by_handle(userlist, tbot->bot)) != 999) continue; cnt++; if ((rleaf != -1 && cnt == rleaf) || (rleaf == -1 && wild_match(botm, tbot->bot))) { send_remote_simul(idx, tbot->bot, cmd, par ? par : ""); found++; } } if (!found) dprintf(idx, "No bot matching '%s' linked\n", botm); return; } static void cmd_hublevel(struct userrec *u, int idx, char *par) { char *handle = NULL, *level = NULL; struct bot_addr *bi = NULL, *obi = NULL; struct userrec *u1 = NULL; putlog(LOG_CMDS, "*", "#%s# hublevel %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: hublevel \n"); return; } handle = newsplit(&par); level = newsplit(&par); u1 = get_user_by_handle(userlist, handle); if (!u1 || !u1->bot) { dprintf(idx, "Useful only for bots.\n"); return; } dprintf(idx, "Changed bot's hublevel.\n"); obi = get_user(&USERENTRY_BOTADDR, u1); bi = calloc(1, sizeof(struct bot_addr)); bi->uplink = strdup(obi->uplink); bi->address = strdup(obi->address); bi->telnet_port = obi->telnet_port; bi->relay_port = obi->relay_port; bi->hublevel = atoi(level); set_user(&USERENTRY_BOTADDR, u1, bi); #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_uplink(struct userrec *u, int idx, char *par) { char *handle = NULL, *uplink = NULL; struct bot_addr *bi = NULL, *obi = NULL; struct userrec *u1 = NULL; putlog(LOG_CMDS, "*", "#%s# uplink %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: uplink [uplink]\n"); return; } handle = newsplit(&par); uplink = newsplit(&par); if (!uplink) uplink = ""; u1 = get_user_by_handle(userlist, handle); if (!u1 || !u1->bot) { dprintf(idx, "Useful only for bots.\n"); return; } if (uplink && uplink[0]) dprintf(idx, "Changed bot's uplink.\n"); else dprintf(idx, "Cleared bot's uplink.\n"); obi = get_user(&USERENTRY_BOTADDR, u1); bi = calloc(1, sizeof(struct bot_addr)); bi->uplink = strdup(uplink); bi->address = strdup(obi->address); bi->telnet_port = obi->telnet_port; bi->relay_port = obi->relay_port; bi->hublevel = obi->hublevel; set_user(&USERENTRY_BOTADDR, u1, bi); #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_chaddr(struct userrec *u, int idx, char *par) { int telnet_port = 3333, relay_port = 3333; #ifdef USE_IPV6 char *handle = NULL, *addr = NULL, *p = NULL, *q = NULL, *r = NULL; #else char *handle = NULL, *addr = NULL, *p = NULL, *q = NULL; #endif /* USE_IPV6 */ struct bot_addr *bi = NULL, *obi = NULL; struct userrec *u1 = NULL; handle = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: chaddr \n"); return; } addr = newsplit(&par); if (strlen(addr) > UHOSTMAX) addr[UHOSTMAX] = 0; u1 = get_user_by_handle(userlist, handle); if (!u1 || !u1->bot) { dprintf(idx, "This command is only useful for tandem bots.\n"); return; } if ((u1 && u1->bot) && (!u || !u->flags & USER_OWNER)) { dprintf(idx, "You can't change a bot's address.\n"); return; } putlog(LOG_CMDS, "*", "#%s# chaddr %s %s", dcc[idx].nick, handle, addr); dprintf(idx, "Changed bot's address.\n"); obi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1); bi = (struct bot_addr *) get_user(&USERENTRY_BOTADDR, u1); if (bi) { telnet_port = bi->telnet_port; relay_port = bi->relay_port; } bi = calloc(1, sizeof(struct bot_addr)); bi->uplink = strdup(obi->uplink); bi->hublevel = obi->hublevel; q = strchr(addr, ':'); /* no port */ if (!q) { bi->address = strdup(addr); bi->telnet_port = telnet_port; bi->relay_port = relay_port; /* with a port, or ipv6 ip */ } else { #ifdef USE_IPV6 if ((r = strchr(addr, '['))) { /* ipv6 notation [3ffe:80c0:225::] */ addr++; /* lose the '[' */ r = strchr(addr, ']'); /* pointer to the ending ']' */ bi->address = calloc(1, r - addr + 1); /* alloc and copy the addr */ strncpyz(bi->address, addr, r - addr + 1); q = r + 1; /* set q to ':' at addr */ } else { #endif /* !USE_IPV6 */ bi->address = calloc(1, q - addr + 1); strncpyz(bi->address, addr, q - addr + 1); #ifdef USE_IPV6 } #endif /* USE_IPV6 */ /* port */ p = q + 1; bi->telnet_port = atoi(p); q = strchr(p, '/'); if (!q) bi->relay_port = bi->telnet_port; else bi->relay_port = atoi(q + 1); } set_user(&USERENTRY_BOTADDR, u1, bi); write_userfile(idx); } #endif /* HUB */ static void cmd_comment(struct userrec *u, int idx, char *par) { char *handle = NULL; struct userrec *u1 = NULL; handle = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: comment \n"); return; } u1 = get_user_by_handle(userlist, handle); if (!u1) { dprintf(idx, "No such user!\n"); return; } if ((u1->flags & USER_OWNER) && !(u && (u->flags & USER_OWNER)) && egg_strcasecmp(handle, dcc[idx].nick)) { dprintf(idx, "You can't change comment on a bot owner.\n"); return; } putlog(LOG_CMDS, "*", "#%s# comment %s %s", dcc[idx].nick, handle, par); if (!egg_strcasecmp(par, "none")) { dprintf(idx, "Okay, comment blanked.\n"); set_user(&USERENTRY_COMMENT, u1, NULL); return; } dprintf(idx, "Changed comment.\n"); update_mod(handle, dcc[idx].nick, "comment", NULL); set_user(&USERENTRY_COMMENT, u1, par); #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_randstring(struct userrec *u, int idx, char *par) { int len; if (!par[0]) { dprintf(idx, "Usage: randstring \n"); return; } putlog(LOG_CMDS, "*", "#%s# randstring %s", dcc[idx].nick, par); len = atoi(par); if (len < 301) { char *randstring = NULL; randstring = calloc(1, len + 1); make_rand_str(randstring, len); dprintf(idx, "string: %s\n", randstring); free(randstring); } else dprintf(idx, "Too long, must be <= 300\n"); } static void cmd_md5(struct userrec *u, int idx, char *par) { if (!par[0]) { dprintf(idx, "Usage: md5 \n"); return; } putlog(LOG_CMDS, "*", "#%s# md5 ...", dcc[idx].nick); dprintf(idx, "MD5(%s) = %s\n", par, MD5(par)); } static void cmd_sha1(struct userrec *u, int idx, char *par) { if (!par[0]) { dprintf(idx, "Usage: sha1 \n"); return; } putlog(LOG_CMDS, "*", "#%s# sha1 ...", dcc[idx].nick); dprintf(idx, "SHA1(%s) = %s\n", par, SHA1(par)); } static void cmd_conf(struct userrec *u, int idx, char *par) { char *cmd = NULL; #ifdef LEAF char *listbot = NULL; #endif /* LEAF */ int save = 0; if (!localhub) { dprintf(idx, "Please use '%s%s%s' for this login/shell.\n", RED(idx), conf.localhub, COLOR_END(idx)); return; } if (par[0]) cmd = newsplit(&par); /* del/change should restart the specified bot ;) */ if (!cmd) { #ifdef LEAF dprintf(idx, "Usage: conf [options]\n"); #endif /* LEAF */ #ifdef HUB dprintf(idx, "Usage: conf [options]\n"); #endif /* HUB */ return; } putlog(LOG_CMDS, "*", "#%s# conf %s %s", dcc[idx].nick, cmd, par[0] ? par : ""); #ifdef LEAF if (!egg_strcasecmp(cmd, "add")) { char *nick = NULL, *host = NULL, *ip = NULL, *ipsix = NULL; nick = newsplit(&par); if (!nick || (nick && !nick[0])) { dprintf(idx, "Usage: conf add [ <[+]host|.> [ipv6-ip]]\n"); return; } if (par[0]) ip = newsplit(&par); if (par[0]) host = newsplit(&par); if (par[0]) ipsix = newsplit(&par); conf_addbot(nick, ip, host, ipsix); dprintf(idx, "Added bot: %s\n", nick); listbot = strdup(nick); save++; } else if (!egg_strcasecmp(cmd, "del")) { if (!par[0]) { dprintf(idx, "Usage: conf del \n"); return; } if (!conf_delbot(par)) { dprintf(idx, "Deleted bot: %s\n", par); save++; } else dprintf(idx, "Error trying to remove bot '%s'\n", par); } #endif /* LEAF */ #if !defined(CYGWIN_HACKS) || defined(HUB) if (!egg_strcasecmp(cmd, "set")) { char *what = NULL; int show = 1, set = 0; if (par[0]) { what = newsplit(&par); if (par[0] && what) { /* set */ set++; save = 1; /* if (!egg_strcasecmp(what, "uid")) conffile.uid = atoi(par); else if (!egg_strcasecmp(what, "uname")) str_redup(&conffile.uname, par); else if (!egg_strcasecmp(what, "username")) str_redup(&conffile.username, par); */ if (!egg_strcasecmp(what, "homedir")) str_redup(&conffile.homedir, par); else if (!egg_strcasecmp(what, "binpath")) str_redup(&conffile.binpath, par); else if (!egg_strcasecmp(what, "binname")) str_redup(&conffile.binname, par); else if (!egg_strcasecmp(what, "portmin")) conffile.portmin = atoi(par); else if (!egg_strcasecmp(what, "portmax")) conffile.portmax = atoi(par); else if (!egg_strcasecmp(what, "pscloak")) conffile.pscloak = atoi(par); else if (!egg_strcasecmp(what, "autocron")) conffile.autocron = atoi(par); else if (!egg_strcasecmp(what, "autouname")) conffile.autouname = atoi(par); else if (!egg_strcasecmp(what, "watcher")) conffile.watcher = atoi(par); else { set--; save = 0; dprintf(idx, "Unknown option '%s'\n", par); } } } if (show) { char *ss = set ? "Set: " : ""; /* if (!what || !egg_strcasecmp(what, "uid")) dprintf(idx, "%suid: %d\n", ss, conffile.uid); if (!what || !egg_strcasecmp(what, "uname")) dprintf(idx, "%suname: %s\n", ss, conffile.uname); if (!what || !egg_strcasecmp(what, "username")) dprintf(idx, "%susername: %s\n", ss, conffile.username); */ if (!what || !egg_strcasecmp(what, "homedir")) dprintf(idx, "%shomedir: %s\n", ss, conffile.homedir); if (!what || !egg_strcasecmp(what, "binpath")) dprintf(idx, "%sbinpath: %s\n", ss, conffile.binpath); if (!what || !egg_strcasecmp(what, "binname")) dprintf(idx, "%sbinname: %s\n", ss, conffile.binname); if (!what || !egg_strcasecmp(what, "portmin")) dprintf(idx, "%sportmin: %d\n", ss, conffile.portmin); if (!what || !egg_strcasecmp(what, "portmax")) dprintf(idx, "%sportmax: %d\n", ss, conffile.portmax); if (!what || !egg_strcasecmp(what, "pscloak")) dprintf(idx, "%spscloak: %d\n", ss, conffile.pscloak); if (!what || !egg_strcasecmp(what, "autocron")) dprintf(idx, "%sautocron: %d\n", ss, conffile.autocron); if (!what || !egg_strcasecmp(what, "autouname")) dprintf(idx, "%sautouname: %d\n", ss, conffile.autouname); if (!what || !egg_strcasecmp(what, "watcher")) dprintf(idx, "%swatcher: %d\n", ss, conffile.watcher); } } #endif /* !CYGWIN_HACKS || HUB */ #ifdef LEAF if (listbot || !egg_strcasecmp(cmd, "list")) { conf_bot *bot = NULL; unsigned int i = 0; for (bot = conffile.bots; bot && bot->nick; bot = bot->next) { i++; if (!listbot || (listbot && !strcmp(listbot, bot->nick))) dprintf(idx, "%d: %s IP: %s HOST: %s IP6: %s HOST6: %s PID: %d\n", i, bot->nick, bot->ip ? bot->ip : "", bot->host ? bot->host : "", bot->ip6 ? bot->ip6 : "", bot->host6 ? bot->host6 : "", bot->pid); } } if (listbot) free(listbot); #endif /* LEAF */ if (save) { writeconf(cfile, NULL, CONF_ENC); #ifdef LEAF spawnbots(); /* parse conffile struct and spawn/kill as needed */ #endif /* LEAF */ } } static void cmd_encrypt(struct userrec *u, int idx, char *par) { char *key = NULL, *buf = NULL; if (!par[0]) { dprintf(idx, "Usage: encrypt \n"); return; } putlog(LOG_CMDS, "*", "#%s# encrypt ...", dcc[idx].nick); key = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: encrypt \n"); return; } buf = encrypt_string(key ? key : SALT2, par); dprintf(idx, "encrypt(%s) = %s\n", par, buf); free(buf); } static void cmd_decrypt(struct userrec *u, int idx, char *par) { char *key = NULL, *buf = NULL; if (!par[0]) { dprintf(idx, "Usage: decrypt \n"); return; } putlog(LOG_CMDS, "*", "#%s# decrypt ...", dcc[idx].nick); key = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: decrypt \n"); return; } buf = decrypt_string(key ? key : SALT2, par); dprintf(idx, "decrypt(%s) = %s\n", par, buf); free(buf); } static void cmd_restart(struct userrec *, int, char *) __attribute__((noreturn)); static void cmd_restart(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# restart", dcc[idx].nick); restart(idx); } #ifdef HUB static void cmd_reload(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# reload", dcc[idx].nick); dprintf(idx, "Reloading user file...\n"); reload(); } #endif /* HUB */ static void cmd_die(struct userrec *u, int idx, char *par) { char s1[1024] = "", s2[1024] = ""; putlog(LOG_CMDS, "*", "#%s# die %s", dcc[idx].nick, par); if (par[0]) { egg_snprintf(s1, sizeof s1, "BOT SHUTDOWN (%s: %s)", dcc[idx].nick, par); egg_snprintf(s2, sizeof s2, "DIE BY %s!%s (%s)", dcc[idx].nick, dcc[idx].host, par); strncpyz(quit_msg, par, 1024); } else { egg_snprintf(s1, sizeof s1, "BOT SHUTDOWN (Authorized by %s)", dcc[idx].nick); egg_snprintf(s2, sizeof s2, "DIE BY %s!%s (request)", dcc[idx].nick, dcc[idx].host); strncpyz(quit_msg, dcc[idx].nick, 1024); } kill_bot(s1, s2); } static void cmd_debug(struct userrec *u, int idx, char *par) { char *cmd = NULL; if (!par[0]) putlog(LOG_CMDS, "*", "#%s# debug", dcc[idx].nick); if (par[0]) cmd = newsplit(&par); if (!cmd || (cmd && !strcmp(cmd, "timesync"))) dprintf(idx, "Timesync: %li (%li)\n", now + timesync, timesync); if (!cmd || (cmd && !strcmp(cmd, "now"))) dprintf(idx, "Now: %li\n", now); if (!cmd || (cmd && !strcmp(cmd, "role"))) dprintf(idx, "Role: %d\n", role); if (!cmd || (cmd &&!strcmp(cmd, "net"))) tell_netdebug(idx); #ifndef CYGWIN_HACKS if (!cmd || (cmd &&!strcmp(cmd, "stackdump"))) stackdump(0); #endif /* !CYGWIN_HACKS */ } static void cmd_timers(struct userrec *u, int idx, char *par) { int *ids = 0, n = 0, called = 0; egg_timeval_t howlong, trigger_time, mynow, diff; if ((n = timer_list(&ids))) { int i = 0; char *name = NULL; timer_get_now(&mynow); for (i = 0; i < n; i++) { char interval[51] = "", next[51] = ""; timer_info(ids[i], &name, &howlong, &trigger_time, &called); timer_diff(&mynow, &trigger_time, &diff); egg_snprintf(interval, sizeof interval, "(%li.%li secs)", howlong.sec, howlong.usec); egg_snprintf(next, sizeof next, "%li.%li secs", diff.sec, diff.usec); dprintf(idx, "%-2d: %-25s %-15s Next: %-25s Called: %d\n", i, name, interval, next, called); } free(ids); } } static void cmd_simul(struct userrec *u, int idx, char *par) { char *nick = NULL; int i, ok = 0; nick = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: simul \n"); return; } if (isowner(nick)) { dprintf(idx, "Unable to '.simul' permanent owners.\n"); return; } for (i = 0; i < dcc_total; i++) if (!egg_strcasecmp(nick, dcc[i].nick) && !ok && (dcc[i].type->flags & DCT_SIMUL)) { putlog(LOG_CMDS, "*", "#%s# simul %s %s", dcc[idx].nick, nick, par); if (dcc[i].type && dcc[i].type->activity) { dcc[i].type->activity(i, par, strlen(par)); ok = 1; } } if (!ok) dprintf(idx, "No such user on the party line.\n"); } #ifdef HUB static void cmd_link(struct userrec *u, int idx, char *par) { char *s = NULL; int i; if (!par[0]) { dprintf(idx, "Usage: link [some-bot] \n"); return; } putlog(LOG_CMDS, "*", "#%s# link %s", dcc[idx].nick, par); s = newsplit(&par); if (!par[0] || !egg_strcasecmp(par, conf.bot->nick)) botlink(dcc[idx].nick, idx, s); else { char x[40] = ""; i = nextbot(s); if (i < 0) { dprintf(idx, "No such bot online.\n"); return; } simple_sprintf(x, "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick); botnet_send_link(i, x, s, par); } } #endif /* HUB */ static void cmd_unlink(struct userrec *u, int idx, char *par) { int i; char *bot = NULL; if (!par[0]) { dprintf(idx, "Usage: unlink [reason]\n"); return; } putlog(LOG_CMDS, "*", "#%s# unlink %s", dcc[idx].nick, par); bot = newsplit(&par); i = nextbot(bot); if (i < 0) { botunlink(idx, bot, par); return; } /* If we're directly connected to that bot, just do it * (is nike gunna sue?) */ if (!egg_strcasecmp(dcc[i].nick, bot)) botunlink(idx, bot, par); else { char x[40] = ""; simple_sprintf(x, "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick); botnet_send_unlink(i, x, lastbot(bot), bot, par); } } static void cmd_relay(struct userrec *u, int idx, char *par) { if (!par[0]) { dprintf(idx, "Usage: relay \n"); return; } putlog(LOG_CMDS, "*", "#%s# relay %s", dcc[idx].nick, par); tandem_relay(idx, par, 0); } #ifdef HUB static void cmd_save(struct userrec *u, int idx, char *par) { char buf[100] = ""; int i = 0; putlog(LOG_CMDS, "*", "#%s# save", dcc[idx].nick); sprintf(buf, "Saving user file..."); i = write_userfile(-1); if (i == 0) strcat(buf, "success."); else if (i == 1) strcat(buf, "failed: No userlist."); else if (i == 2) strcat(buf, "failed: Cannot open userfile for writing."); else if (i == 3) strcat(buf, "failed: Problem writing users/chans (see debug)."); else /* This can't happen. */ strcat(buf, "failed: Unforseen error"); dprintf(idx, "%s\n", buf); } static void cmd_backup(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# backup", dcc[idx].nick); dprintf(idx, "Backing up the channel & user files...\n"); #ifdef HUB write_userfile(idx); backup_userfile(); #endif /* HUB */ } static void cmd_trace(struct userrec *u, int idx, char *par) { int i; char x[NOTENAMELEN + 11] = "", y[11] = ""; if (!par[0]) { dprintf(idx, "Usage: trace \n"); return; } if (!egg_strcasecmp(par, conf.bot->nick)) { dprintf(idx, "That's me! Hiya! :)\n"); return; } i = nextbot(par); if (i < 0) { dprintf(idx, "Unreachable bot.\n"); return; } putlog(LOG_CMDS, "*", "#%s# trace %s", dcc[idx].nick, par); simple_sprintf(x, "%d:%s@%s", dcc[idx].sock, dcc[idx].nick, conf.bot->nick); simple_sprintf(y, ":%d", now); botnet_send_trace(i, x, par, y); } #endif /* HUB */ /* After messing with someone's user flags, make sure the dcc-chat flags * are set correctly. */ int check_dcc_attrs(struct userrec *u, flag_t oatr) { int i, stat; if (!u) return 0; /* Make sure default owners are +a */ if (isowner(u->handle)) { u->flags = sanity_check(u->flags | USER_ADMIN, 0); } for (i = 0; i < dcc_total; i++) { #ifdef LEAF if (!ischanhub() && u == conf.bot->u) { dprintf(i, "I am no longer a chathub..\n\n"); do_boot(i, conf.bot->nick, "I am no longer a chathub.\n\n"); } #endif /* LEAF */ if ((dcc[i].type->flags & DCT_MASTER) && (!egg_strcasecmp(u->handle, dcc[i].nick))) { stat = dcc[i].status; if ((dcc[i].type == &DCC_CHAT) && ((u->flags & (USER_OP | USER_MASTER | USER_OWNER)) != (oatr & (USER_OP | USER_MASTER | USER_OWNER)))) { botnet_send_join_idx(i); } if ((oatr & USER_MASTER) && !(u->flags & USER_MASTER)) { struct flag_record fr = {FR_CHAN | FR_ANYWH, 0, 0, 0 }; dcc[i].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS | LOG_RAW | LOG_FILES | LOG_WALL | LOG_DEBUG); get_user_flagrec(u, &fr, NULL); if (!chan_master(fr)) dcc[i].u.chat->con_flags |= (LOG_MISC | LOG_CMDS); dprintf(i, "*** POOF! ***\n"); dprintf(i, "You are no longer a master on this bot.\n"); } if (!(oatr & USER_MASTER) && (u->flags & USER_MASTER)) { dcc[i].u.chat->con_flags |= conmask; dprintf(i, "*** POOF! ***\n"); dprintf(i, "You are now a master on this bot.\n"); } if (!(oatr & USER_PARTY) && (u->flags & USER_PARTY) && dcc[i].u.chat->channel < 0) { dprintf(i, "-+- POOF! -+-\n"); dprintf(i, "You now have party line chat access.\n"); dprintf(i, "To rejoin the partyline, type: %schat on\n", dcc_prefix); } if (!(oatr & USER_OWNER) && (u->flags & USER_OWNER)) { dprintf(i, "@@@ POOF! @@@\n"); dprintf(i, "You are now an OWNER of this bot.\n"); } if ((oatr & USER_OWNER) && !(u->flags & USER_OWNER)) { dprintf(i, "@@@ POOF! @@@\n"); dprintf(i, "You are no longer an owner of this bot.\n"); } if (!(u->flags & USER_PARTY) && dcc[i].u.chat->channel >= 0) { /* who cares about old flags, they shouldnt be here anyway. */ dprintf(i, "-+- POOF! -+-\n"); dprintf(i, "You no longer have party line chat access.\n"); dprintf(i, "Leaving chat mode...\n"); chanout_but(-1, dcc[i].u.chat->channel, "*** %s left the party line - no chat access.\n", dcc[i].nick); if (dcc[i].u.chat->channel < 100000) botnet_send_part_idx(i, ""); dcc[i].u.chat->channel = (-1); } if (!(oatr & USER_ADMIN) && (u->flags & USER_ADMIN)) { dprintf(i, "^^^ POOF! ^^^\n"); dprintf(i, "You are now an ADMIN of this bot.\n"); } if ((oatr & USER_ADMIN) && !(u->flags & USER_ADMIN)) { dprintf(i, "^^^ POOF! ^^^\n"); dprintf(i, "You are no longer an admin of this bot.\n"); } if ((stat & STAT_PARTY) && (u->flags & USER_OP)) stat &= ~STAT_PARTY; if (!(stat & STAT_PARTY) && !(u->flags & USER_OP) && !(u->flags & USER_MASTER)) stat |= STAT_PARTY; if (stat & STAT_CHAT) { #ifdef HUB if (!(u->flags & USER_HUBA)) stat &= ~STAT_CHAT; #endif /* HUB */ if (ischanhub() && !(u->flags & USER_CHUBA)) stat &= ~STAT_CHAT; } if ((u->flags & USER_PARTY)) stat |= STAT_CHAT; dcc[i].status = stat; /* Check if they no longer have access to wherever they are. */ #ifdef HUB if (!(u->flags & (USER_HUBA))) { /* no hub access, drop them. */ dprintf(i, "-+- POOF! -+-\n"); dprintf(i, "You no longer have hub access.\n\n"); do_boot(i, conf.bot->nick, "No hub access.\n\n"); } #else /* !HUB */ if (ischanhub() && !(u->flags & (USER_CHUBA))) { /* no chanhub access, drop them. */ dprintf(i, "-+- POOF! -+-\n"); dprintf(i, "You no longer have chathub access.\n\n"); do_boot(i, conf.bot->nick, "No chathub access.\n\n"); } #endif /* HUB */ } } return u->flags; } int check_dcc_chanattrs(struct userrec *u, char *chname, flag_t chflags, flag_t ochatr) { int i, found = 0, atr = u ? u->flags : 0; struct chanset_t *chan = NULL; if (!u) return 0; for (i = 0; i < dcc_total; i++) { if ((dcc[i].type->flags & DCT_MASTER) && !egg_strcasecmp(u->handle, dcc[i].nick)) { if ((dcc[i].type == &DCC_CHAT) && ((chflags & (USER_OP | USER_MASTER | USER_OWNER)) != (ochatr & (USER_OP | USER_MASTER | USER_OWNER)))) botnet_send_join_idx(i); if ((ochatr & USER_MASTER) && !(chflags & USER_MASTER)) { if (!(atr & USER_MASTER)) dcc[i].u.chat->con_flags &= ~(LOG_MISC | LOG_CMDS); dprintf(i, "*** POOF! ***\n"); dprintf(i, "You are no longer a master on %s.\n", chname); } if (!(ochatr & USER_MASTER) && (chflags & USER_MASTER)) { dcc[i].u.chat->con_flags |= conmask; if (!(atr & USER_MASTER)) dcc[i].u.chat->con_flags &= ~(LOG_RAW | LOG_DEBUG | LOG_WALL | LOG_FILES | LOG_SRVOUT); dprintf(i, "*** POOF! ***\n"); dprintf(i, "You are now a master on %s.\n", chname); } if (!(ochatr & USER_OWNER) && (chflags & USER_OWNER)) { dprintf(i, "@@@ POOF! @@@\n"); dprintf(i, "You are now an OWNER of %s.\n", chname); } if ((ochatr & USER_OWNER) && !(chflags & USER_OWNER)) { dprintf(i, "@@@ POOF! @@@\n"); dprintf(i, "You are no longer an owner of %s.\n", chname); } if (((ochatr & (USER_OP | USER_MASTER | USER_OWNER)) && (!(chflags & (USER_OP | USER_MASTER | USER_OWNER)))) || ((chflags & (USER_OP | USER_MASTER | USER_OWNER)) && (!(ochatr & (USER_OP | USER_MASTER | USER_OWNER))))) { struct flag_record fr = {FR_CHAN, 0, 0, 0 }; for (chan = chanset; chan && !found; chan = chan->next) { get_user_flagrec(u, &fr, chan->dname); if (fr.chan & (USER_OP | USER_MASTER | USER_OWNER)) found = 1; } if (!chan) chan = chanset; if (chan) strcpy(dcc[i].u.chat->con_chan, chan->dname); else strcpy(dcc[i].u.chat->con_chan, "*"); } } } return chflags; } static void cmd_chattr(struct userrec *u, int idx, char *par) { char *hand = NULL, *arg = NULL, *tmpchg = NULL, *chg = NULL, work[1024] = ""; struct chanset_t *chan = NULL; struct userrec *u2 = NULL; struct flag_record pls = {0, 0, 0, 0 }, mns = {0, 0, 0, 0 }, user = {0, 0, 0, 0 }, ouser = {0, 0, 0, 0 }; flag_t of = 0, ocf = 0; if (!par[0]) { dprintf(idx, "Usage: chattr [changes] [channel]\n"); return; } hand = newsplit(&par); u2 = get_user_by_handle(userlist, hand); if (!u2) { dprintf(idx, "No such user!\n"); return; } /* Parse args */ if (par[0]) { arg = newsplit(&par); if (par[0]) { /* .chattr */ chg = arg; arg = newsplit(&par); chan = findchan_by_dname(arg); } else { chan = findchan_by_dname(arg); /* Consider modeless channels, starting with '+' */ if (!(arg[0] == '+' && chan) && !(arg[0] != '+' && strchr (CHANMETA, arg[0]))) { /* .chattr */ chg = arg; chan = NULL; /* uh, !strchr (CHANMETA, channel[0]) && channel found?? */ arg = NULL; } /* .chattr : nothing to do... */ } } /* arg: pointer to channel name, NULL if none specified * chan: pointer to channel structure, NULL if none found or none specified * chg: pointer to changes, NULL if none specified */ Assert(!(!arg && chan)); if (arg && !chan) { dprintf(idx, "No channel record for %s.\n", arg); return; } if (chg) { if (!arg && strpbrk(chg, "&|")) { /* .chattr *[&|]*: use console channel if found... */ if (!strcmp ((arg = dcc[idx].u.chat->con_chan), "*")) arg = NULL; else chan = findchan_by_dname(arg); if (arg && !chan) { dprintf (idx, "Invalid console channel %s.\n", arg); return; } } else if (arg && !strpbrk(chg, "&|")) { tmpchg = calloc(1, strlen(chg) + 2); strcpy(tmpchg, "|"); strcat(tmpchg, chg); chg = tmpchg; } } par = arg; user.match = FR_GLOBAL; if (chan) user.match |= FR_CHAN; get_user_flagrec(u, &user, chan ? chan->dname : 0); get_user_flagrec(u2, &ouser, chan ? chan->dname : 0); if (chan && !glob_master(user) && !chan_master(user)) { dprintf(idx, "You do not have channel master privileges for channel %s.\n", par); if (tmpchg) free(tmpchg); return; } if (chan && private(user, chan, PRIV_OP)) { dprintf(idx, "You do not have access to change flags for %s\n", chan->dname); if (tmpchg) free(tmpchg); return; } user.match &= -1; if (chg) { int okp = 1; pls.match = user.match; break_down_flags(chg, &pls, &mns); if ((pls.global & USER_UPDATEHUB) && (bot_hublevel(u2) == 999)) { dprintf(idx, "Only a hub can be set as the updatehub.\n"); pls.global &= ~(USER_UPDATEHUB); } /* strip out +p without +i or +j */ if ((pls.global & (USER_CHUBA | USER_HUBA)) || glob_huba(ouser) || glob_chuba(ouser)) okp = 1; if ((pls.global & USER_PARTY) && !okp) { dprintf(idx, "Global flag +p requires either chathub or hub access first.\n"); pls.global &= ~USER_PARTY; } if (!isowner(u->handle)) { if (pls.global & USER_HUBA) putlog(LOG_MISC, "*", "%s attempted to give %s hub connect access", dcc[idx].nick, u2->handle); if (mns.global & USER_HUBA) putlog(LOG_MISC, "*", "%s attempted to take away hub connect access from %s", dcc[idx].nick, u2->handle); if (pls.global & USER_UPDATEHUB) putlog(LOG_MISC, "*", "%s attempted to make %s the updatehub", dcc[idx].nick, u2->handle); if (mns.global & USER_UPDATEHUB) putlog(LOG_MISC, "*", "%s attempted to take away updatehub status from %s", dcc[idx].nick, u2->handle); if (pls.global & USER_ADMIN) putlog(LOG_MISC, "*", "%s attempted to give %s admin access", dcc[idx].nick, u2->handle); if (mns.global & USER_ADMIN) putlog(LOG_MISC, "*", "%s attempted to take away admin access from %s", dcc[idx].nick, u2->handle); if (pls.global & USER_OWNER) putlog(LOG_MISC, "*", "%s attempted to give owner to %s", dcc[idx].nick, u2->handle); if (mns.global & USER_OWNER) putlog(LOG_MISC, "*", "%s attempted to take owner away from %s", dcc[idx].nick, u2->handle); pls.global &=~(USER_HUBA | USER_ADMIN | USER_OWNER | USER_UPDATEHUB); mns.global &=~(USER_HUBA | USER_ADMIN | USER_OWNER | USER_UPDATEHUB); pls.chan &= ~(USER_ADMIN | USER_UPDATEHUB); } if (chan) { pls.chan &= ~(USER_HUBA | USER_CHUBA); mns.chan &= ~(USER_HUBA | USER_CHUBA); } if (!glob_owner(user) && !isowner(u->handle)) { pls.global &= ~(USER_CHUBA | USER_OWNER | USER_MASTER); mns.global &= ~(USER_CHUBA | USER_OWNER | USER_MASTER); if (chan) { pls.chan &= ~USER_OWNER; mns.chan &= ~USER_OWNER; } } if (chan && !chan_owner(user) && !glob_owner(user) && !isowner(u->handle)) { pls.chan &= ~USER_MASTER; mns.chan &= ~USER_MASTER; if (!chan_master(user) && !glob_master(user)) { pls.chan = 0; mns.chan = 0; } } #ifdef LEAF pls.global &=~(USER_OWNER | USER_ADMIN | USER_HUBA | USER_CHUBA); mns.global &=~(USER_OWNER | USER_ADMIN | USER_HUBA | USER_CHUBA); #endif /* LEAF */ get_user_flagrec(u2, &user, par); if (user.match & FR_GLOBAL) { of = user.global; user.global = sanity_check((user.global |pls.global) &~mns.global, u2->bot); } if (chan) { ocf = user.chan; user.chan = chan_sanity_check((user.chan | pls.chan) & ~mns.chan); } set_user_flagrec(u2, &user, par); } if (chan) { char tmp[100] = ""; putlog(LOG_CMDS, "*", "#%s# (%s) chattr %s %s", dcc[idx].nick, chan ? chan->dname : "*", hand, chg ? chg : ""); egg_snprintf(tmp, sizeof tmp, "chattr %s", chg); update_mod(hand, dcc[idx].nick, tmp, chan->dname); } else { putlog(LOG_CMDS, "*", "#%s# chattr %s %s", dcc[idx].nick, hand, chg ? chg : ""); update_mod(hand, dcc[idx].nick, "chattr", chg); } /* Get current flags and display them */ if (user.match & FR_GLOBAL) { user.match = FR_GLOBAL; if (chg) check_dcc_attrs(u2, of); get_user_flagrec(u2, &user, NULL); build_flags(work, &user, NULL); if (work[0] != '-') dprintf(idx, "Global flags for %s are now +%s.\n", hand, work); else dprintf(idx, "No global flags for %s.\n", hand); } if (chan) { user.match = FR_CHAN; get_user_flagrec(u2, &user, par); if (chg) check_dcc_chanattrs(u2, chan->dname, user.chan, ocf); build_flags(work, &user, NULL); if (work[0] != '-') dprintf(idx, "Channel flags for %s on %s are now +%s.\n", hand, chan->dname, work); else dprintf(idx, "No flags for %s on %s.\n", hand, chan->dname); } #ifdef LEAF if (chg) check_this_user(hand, 0, NULL); #endif /* LEAF */ if (tmpchg) free(tmpchg); #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_chat(struct userrec *u, int idx, char *par) { char *arg = NULL; int newchan, oldchan; if (!(u->flags & USER_PARTY)) { dprintf(idx, "You don't have partyline access\n"); return; } arg = newsplit(&par); if (!egg_strcasecmp(arg, "off")) { /* Turn chat off */ if (dcc[idx].u.chat->channel < 0) { dprintf(idx, "You weren't in chat anyway!\n"); return; } else { dprintf(idx, "Leaving chat mode...\n"); chanout_but(-1, dcc[idx].u.chat->channel, "*** %s left the party line.\n", dcc[idx].nick); if (dcc[idx].u.chat->channel < GLOBAL_CHANS) botnet_send_part_idx(idx, ""); } dcc[idx].u.chat->channel = (-1); } else { if (arg[0] == '*') { if (((arg[1] < '0') || (arg[1] > '9'))) { if (!arg[1]) newchan = 0; else { newchan = -1; } if (newchan < 0) { dprintf(idx, "No channel exists by that name.\n"); return; } } else newchan = GLOBAL_CHANS + atoi(arg + 1); if (newchan < GLOBAL_CHANS || newchan > 199999) { dprintf(idx, "Channel number out of range: local channels must be *0-*99999.\n"); return; } } else { if (((arg[0] < '0') || (arg[0] > '9')) && (arg[0])) { if (!egg_strcasecmp(arg, "on")) newchan = 0; else { newchan = -1; } if (newchan < 0) { dprintf(idx, "No channel exists by that name.\n"); return; } } else newchan = atoi(arg); if ((newchan < 0) || (newchan > 99999)) { dprintf(idx, "Channel number out of range: must be between 0 and 99999.\n"); return; } } /* If coming back from being off the party line, make sure they're * not away. */ if ((dcc[idx].u.chat->channel < 0) && (dcc[idx].u.chat->away != NULL)) not_away(idx); if (dcc[idx].u.chat->channel == newchan) { if (!newchan) { dprintf(idx, "You're already on the party line!\n"); return; } else { dprintf(idx, "You're already on channel %s%d!\n", (newchan < GLOBAL_CHANS) ? "" : "*", newchan % GLOBAL_CHANS); return; } } else { oldchan = dcc[idx].u.chat->channel; if (!oldchan) { chanout_but(-1, 0, "*** %s left the party line.\n", dcc[idx].nick); } else if (oldchan > 0) { chanout_but(-1, oldchan, "*** %s left the channel.\n", dcc[idx].nick); } dcc[idx].u.chat->channel = newchan; if (!newchan) { dprintf(idx, "Entering the party line...\n"); chanout_but(-1, 0, "*** %s joined the party line.\n", dcc[idx].nick); } else { dprintf(idx, "Joining channel '%s'...\n", arg); chanout_but(-1, newchan, "*** %s joined the channel.\n", dcc[idx].nick); } if (newchan < GLOBAL_CHANS) botnet_send_join_idx(idx); else if (oldchan < GLOBAL_CHANS) botnet_send_part_idx(idx, ""); } } console_dostore(idx); } int exec_str(int idx, char *cmd) { char *out = NULL, *err = NULL, *p = NULL, *np = NULL; if (shell_exec(cmd, NULL, &out, &err)) { if (out) { dprintf(idx, "Result:\n"); p=out; while (p && p[0]) { np=strchr(p, '\n'); if (np) *np++=0; dprintf(idx, "%s\n", p); p=np; } dprintf(idx, "\n"); free(out); } if (err) { dprintf(idx, "Errors:\n"); p=err; while (p && p[0]) { np=strchr(p, '\n'); if (np) *np++=0; dprintf(idx, "%s\n", p); p=np; } dprintf(idx, "\n"); free(err); } return 1; } return 0; } static void cmd_exec(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# exec %s", dcc[idx].nick, par); #ifdef LEAF if (!isowner(u->handle)) { putlog(LOG_WARN, "*", "%s attempted 'exec' %s", dcc[idx].nick, par); dprintf(idx, "exec is only available to permanent owners on leaf bots\n"); return; } #endif /* LEAF */ if (exec_str(idx, par)) dprintf(idx, "Exec completed\n"); else dprintf(idx, "Exec failed\n"); } static void cmd_w(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# w", dcc[idx].nick); if (!exec_str(idx, "w")) dprintf(idx, "Exec failed\n"); } static void cmd_ps(struct userrec *u, int idx, char *par) { char *buf = NULL; size_t size; putlog(LOG_CMDS, "*", "#%s# ps %s", dcc[idx].nick, par); if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>')) { putlog(LOG_WARN, "*", "%s attempted 'ps' with pipe/semicolon in parameters: %s", dcc[idx].nick, par); dprintf(idx, "No."); return; } size = strlen(par) + 9 + 1; buf = calloc(1, size); egg_snprintf(buf, size, "ps %s", par); if (!exec_str(idx, buf)) dprintf(idx, "Exec failed\n"); free(buf); } static void cmd_last(struct userrec *u, int idx, char *par) { char user[20] = "", buf[30] = ""; putlog(LOG_CMDS, "*", "#%s# last %s", dcc[idx].nick, par); if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>')) { putlog(LOG_WARN, "*", "%s attempted 'last' with pipe/semicolon in parameters: %s", dcc[idx].nick, par); dprintf(idx, "No."); return; } if (par && par[0]) { strncpyz(user, par, sizeof(user)); } else if (conf.username) { strncpyz(user, conf.username, sizeof(user)); } if (!user[0]) { dprintf(idx, "Can't determine user id for process\n"); return; } egg_snprintf(buf, sizeof buf, "last %s", user); if (!exec_str(idx, buf)) dprintf(idx, "Failed to execute /bin/sh last\n"); } static char *penis = " .,:,,,,...\n ..;;==;;;:,..\n .::=;;;;;;;;:,..\n .,;=;:::;;;;;;;:,.\n .:;==;::;;;=;;;=;;,.\n .;==;:::;====;;;=;:,.\n ,=+=;:::;===;;;;==;,.\n .:=i=:::;====;;:;;=;,.\n ,=++;;::;====;;::;=;,.\n .:+i=;;::;====;;::;;;:.\n ,=ii=;:;;;====;::::;;:..\n .;ii+=;:;;=====;;:::;;:.\n ,=ii+=;;;;=====;::::;=:..\n :+ii+==;;======;::,:;;:..\n .;+i++=;;;======;:,,:==:..\n ,+iii+=;========;:,:===:,.\n .:+iiii======+===;::;===:,.\n .:+iiti+++++++===;;;=+==;,.\n :+itttttii+++++====++==;,.\n :+tIIIIItttiiiii++++=;;;,.\n .iYVVVVVYIItttii+++==;;;.\n .;YXXXXXVVYIti++=++==;;;.\n ,tVVVVVYIItii+++==;==;:.\n ,+ttttti+++++===;;;==;,.\n ,=iii+==;=====;;;:;==;,.\n .=tIItii++++++===;;==;,.\n .+IYYIYIIItii++=+;===;.\n ,+tttttttii++====;===;..\n .:+iiiiiiiii+=+++;====;,\n .;iittii+iiii++=;=====;,\n .=itttitttii+===;====;;.\n .=iitttti++===========:.\n ,=ittIi+=;;==++======;:.\n ,=itti+=;+++++=;:;===;:.\n :+ttt+=+ittii+;::====;:.\n .:itiiiittii++=;;;===;;,.\n .;iiiti+iii+++=;;;====:.\n .=ittII++ii+++===+===;:.\n ,+tIIIIi=++++========;,.\n ,iIIItIt+==+==;:;;===:.\n :iYttiiti===;;::;;===:.\n .:iiii+;+i++====;====;,.\n ,+itti=+i++++++=====;,.\n ,=tYYIt+iii++=======;,\n :iYIIIttti+=;::=====;,.\n .;tIttttti++=;:;=====:..\n ,+tti+itt+++==;;=====:.\n .:+iii+=+iii++========:.\n .;+itt+==+++==;;=====;:.\n .;itIII+====;:::;====;:.\n ,=iIIIIti++===;;=====;,.\n :+tItttItiii+++======;,.\n .;iItttIttii+=;;;=====;.\n ,=ittti+=====;;:;===;=;.\n ,=ii+i+======::;=====;:.\n :+i+iii++++++===+====;,.\n ;iItIIIti+=====++====;,.\n .;tIIIIIIti=;;:;======;,\n ,=ittttIIIti=;;=======;.\n ,=itttttittti+========;.\n ,+iittttiiii++========;.\n :iiitttti+i+==========:.\n :it+++iiii++=;=======;:\n .;iti=;=+++++=========;,\n ,=ttt+;;=+==;;========;.\n .;iittti+++=;::;=======:.\n ,=ittttttti+=:::======;:.\n ;=ittIItttttt=;;======;,.\n .=itItttiiiitti+=+=====:.\n .:itIIttti++++ii+=++===;:.\n ,=tIItttti++===i+===+==;,\n :+tttttttii+==;=+;=====;,\n .;ittttttii++==:;;;=====;:.\n ,+ttttttti+i++=:::;=====;,.\n .;iitttttiiii++=;::;=====;,\n .=iittttttii+i+=;::;======,\n :=iiii+===++ii+=;:,:;====;,\n .;+itttti++==+===;:,::;===;,.\n .;itttIIItti+===;;:,,:;====:.\n .:+tttittttttt++=;;::::;;===:.\n .;iti++++++iiii+=::,,,::;;==;,\n :+tti+=====++iii=;:::,,::;==;:.\n ,=ittii++++++++i+=;:,,,,::;==;;,.\n .:+titti++++++++++=;::::,::;==;;:,.\n ,=ittti+++==+++++++;::,::,:;====;;,. .\n .=iitti++==;;==+=++=;::,,:::=====;;;,..\n .:itiiii+=;;;;;;=====;:::,::;====;;;;;:,...\n ,=+i+iii+==;;;;;;====;;;::;;===+==;;::;;;:,,..\n .,;=+++++++======;=====;==;;;====+==;;:::;;;;;:,..\n :+i++i++++++=======================;;;;;::;=;=;;:...\n .=tt+i+++++++=========;;=======;====;;;;;;:;;;===;:,,..\n :+iii++++++================;;=;=====;;;:;;;;;;;;=;;;:,..\n . .;itii++=======================;;==;===;;;;;;;;;;;===;;:,.\n .;+iiii+=====;;==================;==;===;;;=;;;;;;;==;;;;:,.\n ,=tttti+===;;;;=============;;;;;;;;;;===;===;;;;;;;==;=;;;:.\n .,=tttti+++=;;;=====+=======;;;;;:;:;;======++=;;;;;;;===;;=;,.\n ,+ttttiii++====++++++=====;;;:::::::;==++++ii++==;;;====;===:.\n ,;itttiiii++=++++++++=+===;;;::,:::;==+++iittti+=;=====;=;;=;,\n ,;=+i+++iii+++++++++++===;;;::::::;=++++iitttii+=======;;;=;,\n .,,;==+iiiii+++++++++++==;;;;::::;=++iiitttttti+======;:;;;:.\n ..,:=itttii+++++++++===;;;;;;;;=++iiittttttti+++++=;::;=;.\n .,:=+ittttii++=+++===;;;;;=+iiiittIIttttii+++==;::;=;,.\n .,,,:;=+itIii+=;========+++ittttttItttiii++=;::;;=:.\n .....,:;++iii++=====++ititIIIItIttttii++=;:;;=;:.\n ...,,:;====;;;=+itttttIIIttttii++=;:;==;:.\n . ......,,:;=+ittttttIIIIttii++;;;==;:.\n ...,=itItiitIIItttii+=;===;:.\n .,:;=itIttttiiii+=====;:.\n ...,,==iiii++======;,\n .....,,:;;;;;;;=:.\n .....,:;:.\n .."; static void cmd_echo(struct userrec *u, int idx, char *par) { if (penis) { ; } /* gcc warnings */ if (!par[0]) { dprintf(idx, "Echo is currently %s.\n", dcc[idx].status & STAT_ECHO ? "on" : "off"); return; } if (!egg_strcasecmp(par, "on")) { dprintf(idx, "Echo turned on.\n"); dcc[idx].status |= STAT_ECHO; } else if (!egg_strcasecmp(par, "off")) { dprintf(idx, "Echo turned off.\n"); dcc[idx].status &= ~STAT_ECHO; } else { dprintf(idx, "Usage: echo \n"); return; } console_dostore(idx); } static void cmd_color(struct userrec *u, int idx, char *par) { int ansi = 0; char *of = NULL; putlog(LOG_CMDS, "*", "#%s# color %s", dcc[idx].nick, par); ansi = coloridx(idx); if (!par[0]) { dprintf(idx, "Usage: color \n"); if (ansi) dprintf(idx, "Color is currently on. (%s)\n", ansi == 1 ? "ANSI" : "mIRC"); else dprintf(idx, "Color is currently off.\n"); return; } of = newsplit(&par); if (!egg_strcasecmp(of, "on")) { dcc[idx].status |= STAT_COLOR; } else if (!egg_strcasecmp(of, "off")) { dcc[idx].status &= ~(STAT_COLOR); dprintf(idx, "Color turned off.\n"); } else { return; } console_dostore(idx); } int stripmodes(char *s) { int res = 0; for (; *s; s++) switch (tolower(*s)) { case 'b': res |= STRIP_BOLD; break; case 'c': res |= STRIP_COLOR; break; case 'r': res |= STRIP_REV; break; case 'u': res |= STRIP_UNDER; break; case 'a': res |= STRIP_ANSI; break; case 'g': res |= STRIP_BELLS; break; case '*': res |= STRIP_ALL; break; } return res; } char *stripmasktype(int x) { static char s[20] = ""; char *p = s; if (x & STRIP_BOLD) *p++ = 'b'; if (x & STRIP_COLOR) *p++ = 'c'; if (x & STRIP_REV) *p++ = 'r'; if (x & STRIP_UNDER) *p++ = 'u'; if (x & STRIP_ANSI) *p++ = 'a'; if (x & STRIP_BELLS) *p++ = 'g'; if (p == s) *p++ = '-'; *p = 0; return s; } static char *stripmaskname(int x) { static char s[161] = ""; int i = 0; s[i] = 0; if (x & STRIP_BOLD) i += my_strcpy(s + i, "bold, "); if (x & STRIP_COLOR) i += my_strcpy(s + i, "color, "); if (x & STRIP_REV) i += my_strcpy(s + i, "reverse, "); if (x & STRIP_UNDER) i += my_strcpy(s + i, "underline, "); if (x & STRIP_ANSI) i += my_strcpy(s + i, "ansi, "); if (x & STRIP_BELLS) i += my_strcpy(s + i, "bells, "); if (!i) strcpy(s, "none"); else s[i - 2] = 0; return s; } static void cmd_strip(struct userrec *u, int idx, char *par) { char *nick = NULL, *changes = NULL, *c = NULL, s[2] = ""; int dest = 0, i, pls, md, ok = 0; if (!par[0]) { dprintf(idx, "Your current strip settings are: %s (%s).\n", stripmasktype(dcc[idx].u.chat->strip_flags), stripmaskname(dcc[idx].u.chat->strip_flags)); return; } nick = newsplit(&par); if ((nick[0] != '+') && (nick[0] != '-') && u && (u->flags & USER_MASTER)) { for (i = 0; i < dcc_total; i++) if (!egg_strcasecmp(nick, dcc[i].nick) && dcc[i].type == &DCC_CHAT && !ok) { ok = 1; dest = i; } if (!ok) { dprintf(idx, "No such user on the party line!\n"); return; } changes = par; } else { changes = nick; nick = ""; dest = idx; } c = changes; if ((c[0] != '+') && (c[0] != '-')) dcc[dest].u.chat->strip_flags = 0; s[1] = 0; for (pls = 1; *c; c++) { switch (*c) { case '+': pls = 1; break; case '-': pls = 0; break; default: s[0] = *c; md = stripmodes(s); if (pls == 1) dcc[dest].u.chat->strip_flags |= md; else dcc[dest].u.chat->strip_flags &= ~md; } } if (nick[0]) putlog(LOG_CMDS, "*", "#%s# strip %s %s", dcc[idx].nick, nick, changes); else putlog(LOG_CMDS, "*", "#%s# strip %s", dcc[idx].nick, changes); if (dest == idx) { dprintf(idx, "Your strip settings are: %s (%s).\n", stripmasktype(dcc[idx].u.chat->strip_flags), stripmaskname(dcc[idx].u.chat->strip_flags)); } else { dprintf(idx, "Strip setting for %s: %s (%s).\n", dcc[dest].nick, stripmasktype(dcc[dest].u.chat->strip_flags), stripmaskname(dcc[dest].u.chat->strip_flags)); dprintf(dest, "%s set your strip settings to: %s (%s).\n", dcc[idx].nick, stripmasktype(dcc[dest].u.chat->strip_flags), stripmaskname(dcc[dest].u.chat->strip_flags)); } /* Set highlight flag here so user is able to control stripping of * bold also as intended -- dw 27/12/1999 */ console_dostore(dest); } static void cmd_su(struct userrec *u, int idx, char *par) { int atr = u ? u->flags : 0, ok; struct flag_record fr = {FR_ANYWH | FR_CHAN | FR_GLOBAL, 0, 0, 0 }; u = get_user_by_handle(userlist, par); if (!par[0]) dprintf(idx, "Usage: su \n"); else if (!u) dprintf(idx, "No such user.\n"); else if (u->bot) dprintf(idx, "You can't su to a bot... then again, why would you wanna?\n"); else if (dcc[idx].u.chat->su_nick) dprintf(idx, "You cannot currently double .su; try .su'ing directly.\n"); else { get_user_flagrec(u, &fr, NULL); ok = 1; #ifdef HUB if (!glob_huba(fr)) ok = 0; #else /* !HUB */ if (ischanhub() && !glob_chuba(fr)) ok = 0; #endif /* LEAF */ if (!ok) dprintf(idx, "No party line access permitted for %s.\n", par); else { correct_handle(par); putlog(LOG_CMDS, "*", "#%s# su %s", dcc[idx].nick, par); if (!(atr & USER_OWNER) || ((u->flags & USER_OWNER) && (isowner(par)) && !(isowner(dcc[idx].nick)))) { /* This check is only important for non-owners */ if (u_pass_match(u, "-")) { dprintf(idx, "No password set for user. You may not .su to them.\n"); return; } if (dcc[idx].u.chat->channel < GLOBAL_CHANS) botnet_send_part_idx(idx, ""); chanout_but(-1, dcc[idx].u.chat->channel, "*** %s left the party line.\n", dcc[idx].nick); /* Store the old nick in the away section, for weenies who can't get * their password right ;) */ if (dcc[idx].u.chat->away != NULL) free(dcc[idx].u.chat->away); dcc[idx].u.chat->away = calloc(1, strlen(dcc[idx].nick) + 1); strcpy(dcc[idx].u.chat->away, dcc[idx].nick); dcc[idx].u.chat->su_nick = calloc(1, strlen(dcc[idx].nick) + 1); strcpy(dcc[idx].u.chat->su_nick, dcc[idx].nick); dcc[idx].user = u; strcpy(dcc[idx].nick, par); /* Display password prompt and turn off echo (send IAC WILL ECHO). */ dprintf(idx, "Enter password for %s%s\n", par, (dcc[idx].status & STAT_TELNET) ? TLN_IAC_C TLN_WILL_C TLN_ECHO_C : ""); dcc[idx].type = &DCC_CHAT_PASS; } else if (atr & USER_OWNER) { if (dcc[idx].u.chat->channel < GLOBAL_CHANS) botnet_send_part_idx(idx, ""); chanout_but(-1, dcc[idx].u.chat->channel, "*** %s left the party line.\n", dcc[idx].nick); dprintf(idx, "Setting your username to %s.\n", par); if (atr & USER_MASTER) dcc[idx].u.chat->con_flags = conmask; dcc[idx].u.chat->su_nick = calloc(1, strlen(dcc[idx].nick) + 1); strcpy(dcc[idx].u.chat->su_nick, dcc[idx].nick); dcc[idx].user = u; strcpy(dcc[idx].nick, par); dcc_chatter(idx); } } } } static void cmd_fixcodes(struct userrec *u, int idx, char *par) { if (dcc[idx].status & STAT_TELNET) { dcc[idx].status |= STAT_ECHO; dcc[idx].status &= ~STAT_TELNET; dprintf(idx, "Turned off telnet codes.\n"); putlog(LOG_CMDS, "*", "#%s# fixcodes (telnet off)", dcc[idx].nick); } else { dcc[idx].status |= STAT_TELNET; dcc[idx].status &= ~STAT_ECHO; dprintf(idx, "Turned on telnet codes.\n"); putlog(LOG_CMDS, "*", "#%s# fixcodes (telnet on)", dcc[idx].nick); } } static void cmd_page(struct userrec *u, int idx, char *par) { int a; if (!par[0]) { if (dcc[idx].status & STAT_PAGE) { dprintf(idx, "Currently paging outputs to %d lines.\n", dcc[idx].u.chat->max_line); } else dprintf(idx, "You don't have paging on.\n"); return; } a = atoi(par); if ((!a && !par[0]) || !egg_strcasecmp(par, "off")) { dcc[idx].status &= ~STAT_PAGE; dcc[idx].u.chat->max_line = 0x7ffffff; /* flush_lines needs this */ while (dcc[idx].u.chat->buffer) flush_lines(idx, dcc[idx].u.chat); dprintf(idx, "Paging turned off.\n"); putlog(LOG_CMDS, "*", "#%s# page off", dcc[idx].nick); } else if (a > 0) { dprintf(idx, "Paging turned on, stopping every %d line%s.\n", a, (a != 1) ? "s" : ""); dcc[idx].status |= STAT_PAGE; dcc[idx].u.chat->max_line = a; dcc[idx].u.chat->line_count = 0; dcc[idx].u.chat->current_lines = 0; putlog(LOG_CMDS, "*", "#%s# page %d", dcc[idx].nick, a); } else { dprintf(idx, "Usage: page \n"); return; } console_dostore(idx); } #ifdef HUB static void cmd_newleaf(struct userrec *u, int idx, char *par) { char *handle = NULL, *host = NULL; putlog(LOG_CMDS, "*", "#%s# newleaf %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: newleaf [host] [anotherhost]\n"); dprintf(idx, " Leafs can't link unless you specify a *!ident@ip hostmask\n"); } else { handle = newsplit(&par); if (strlen(handle) > HANDLEN) handle[HANDLEN] = 0; if (get_user_by_handle(userlist, handle)) dprintf(idx, "Already got a %s user/bot\n", handle); else if (strchr(BADHANDCHARS, handle[0]) != NULL) dprintf(idx, "You can't start a botnick with '%c'.\n", handle[0]); else { struct userrec *u1 = NULL; struct bot_addr *bi = NULL; char tmp[81] = ""; userlist = adduser(userlist, handle, "none", "-", USER_OP, 1); u1 = get_user_by_handle(userlist, handle); bi = calloc(1, sizeof(struct bot_addr)); bi->uplink = calloc(1, strlen(conf.bot->nick) + 1); /* strcpy(bi->uplink, conf.bot->nick); */ strcpy(bi->uplink, ""); bi->address = calloc(1, 1); bi->telnet_port = 3333; bi->relay_port = 3333; bi->hublevel = 0; set_user(&USERENTRY_BOTADDR, u1, bi); /* set_user(&USERENTRY_PASS, u1, SALT2); */ sprintf(tmp, "%li %s", now, u->handle); set_user(&USERENTRY_ADDED, u1, tmp); dprintf(idx, "Added new leaf: %s\n", handle); while (par[0]) { host = newsplit(&par); addhost_by_handle(handle, host); dprintf(idx, "Added host '%s' to leaf: %s\n", host, handle); } #ifdef HUB write_userfile(idx); #endif /* HUB */ } } } static void cmd_nopass(struct userrec *u, int idx, char *par) { int cnt = 0; struct userrec *cu = NULL; char *users = NULL; users = calloc(1, 1); putlog(LOG_CMDS, "*", "#%s# nopass %s", dcc[idx].nick, (par && par[0]) ? par : ""); for (cu = userlist; cu; cu = cu->next) { if (!cu->bot) { if (u_pass_match(cu, "-")) { cnt++; users = realloc(users, strlen(users) + strlen(cu->handle) + 1 + 1); strcat(users, cu->handle); strcat(users, " "); } } } if (!cnt) dprintf(idx, "All users have passwords set.\n"); else dprintf(idx, "Users without passwords: %s\n", users); free(users); } #endif /* HUB */ static void cmd_pls_ignore(struct userrec *u, int idx, char *par) { char *who = NULL, s[UHOSTLEN] = ""; unsigned long int expire_time = 0; if (!par[0]) { dprintf(idx, "Usage: +ignore [%%] [comment]\n"); return; } who = newsplit(&par); if (par[0] == '%') { char *p = NULL, *p_expire = NULL; unsigned long int expire_foo; p = newsplit(&par); p_expire = p + 1; while (*(++p) != 0) { switch (tolower(*p)) { case 'd': *p = 0; expire_foo = strtol(p_expire, NULL, 10); if (expire_foo > 365) expire_foo = 365; expire_time += 86400 * expire_foo; p_expire = p + 1; break; case 'h': *p = 0; expire_foo = strtol(p_expire, NULL, 10); if (expire_foo > 8760) expire_foo = 8760; expire_time += 3600 * expire_foo; p_expire = p + 1; break; case 'm': *p = 0; expire_foo = strtol(p_expire, NULL, 10); if (expire_foo > 525600) expire_foo = 525600; expire_time += 60 * expire_foo; p_expire = p + 1; } } } if (!par[0]) par = "requested"; else if (strlen(par) > 65) par[65] = 0; if (strlen(who) > UHOSTMAX - 4) who[UHOSTMAX - 4] = 0; /* Fix missing ! or @ BEFORE continuing */ if (!strchr(who, '!')) { if (!strchr(who, '@')) simple_sprintf(s, "%s!*@*", who); else simple_sprintf(s, "*!%s", who); } else if (!strchr(who, '@')) simple_sprintf(s, "%s@*", who); else strcpy(s, who); if (match_ignore(s)) dprintf(idx, "That already matches an existing ignore.\n"); else { dprintf(idx, "Now ignoring: %s (%s)\n", s, par); addignore(s, dcc[idx].nick, par, expire_time ? now + expire_time : 0L); putlog(LOG_CMDS, "*", "#%s# +ignore %s %s", dcc[idx].nick, s, par); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } static void cmd_mns_ignore(struct userrec *u, int idx, char *par) { char buf[UHOSTLEN] = ""; if (!par[0]) { dprintf(idx, "Usage: -ignore \n"); return; } strncpyz(buf, par, sizeof buf); if (delignore(buf)) { putlog(LOG_CMDS, "*", "#%s# -ignore %s", dcc[idx].nick, buf); dprintf(idx, "No longer ignoring: %s\n", buf); #ifdef HUB write_userfile(idx); #endif /* HUB */ } else dprintf(idx, "That ignore cannot be found.\n"); } static void cmd_ignores(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# ignores %s", dcc[idx].nick, par); tell_ignores(idx, par); } static void cmd_pls_user(struct userrec *u, int idx, char *par) { char *handle = NULL, *host = NULL; putlog(LOG_CMDS, "*", "#%s# +user %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: +user [host] [anotherhost] ...\n"); return; } handle = newsplit(&par); host = newsplit(&par); if (strlen(handle) > HANDLEN) handle[HANDLEN] = 0; if (get_user_by_handle(userlist, handle)) dprintf(idx, "Someone already exists by that name.\n"); else if (strchr(BADNICKCHARS, handle[0]) != NULL) dprintf(idx, "You can't start a nick with '%c'.\n", handle[0]); else if (!egg_strcasecmp(handle, conf.bot->nick)) dprintf(idx, "Hey! That's MY name!\n"); else { struct userrec *u2 = NULL; char tmp[50] = "", s[16] = "", s2[17] = ""; userlist = adduser(userlist, handle, host, "-", USER_DEFAULT, 0); u2 = get_user_by_handle(userlist, handle); sprintf(tmp, "%li %s", now, u->handle); set_user(&USERENTRY_ADDED, u2, tmp); dprintf(idx, "Added %s (%s) with no flags.\n", handle, host); while (par[0]) { host = newsplit(&par); set_user(&USERENTRY_HOSTS, u2, host); dprintf(idx, "Added host '%s' to %s.\n", host, handle); } make_rand_str(s, 15); set_user(&USERENTRY_PASS, u2, s); make_rand_str(s2, 16); set_user(&USERENTRY_SECPASS, u2, s2); dprintf(idx, "%s's initial password set to %s%s%s\n", handle, BOLD(idx), s, BOLD_END(idx)); dprintf(idx, "%s's initial secpass set to %s%s%s\n", handle, BOLD(idx), s2, BOLD_END(idx)); #ifdef HUB write_userfile(idx); #endif /* HUB */ } } static void cmd_mns_user(struct userrec *u, int idx, char *par) { int idx2; char *handle = NULL; struct userrec *u2 = NULL; putlog(LOG_CMDS, "*", "#%s# -user %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: -user \n"); return; } handle = newsplit(&par); u2 = get_user_by_handle(userlist, handle); if (!u2 || !u) { dprintf(idx, "No such user!\n"); return; } if (isowner(u2->handle)) { dprintf(idx, "You can't remove a permanent bot owner!\n"); return; } if ((u2->flags & USER_ADMIN) && !(isowner(u->handle))) { dprintf(idx, "You can't remove an admin!\n"); return; } if ((u2->flags & USER_OWNER) && !(u->flags & USER_OWNER)) { dprintf(idx, "You can't remove a bot owner!\n"); return; } if (u2->bot) { if (!(u->flags & USER_OWNER)) { dprintf(idx, "You can't remove bots.\n"); return; } for (idx2 = 0; idx2 < dcc_total; idx2++) if (dcc[idx2].type != &DCC_RELAY && dcc[idx2].type != &DCC_FORK_BOT && !egg_strcasecmp(dcc[idx2].nick, handle)) break; if (idx2 != dcc_total) { dprintf(idx, "You can't remove a directly linked bot.\n"); return; } } if (!(u->flags & USER_MASTER) && !u2->bot) { dprintf(idx, "You can't remove users who aren't bots!\n"); return; } #ifdef LEAF check_this_user(handle, 1, NULL); #endif /* LEAF */ if (deluser(handle)) { dprintf(idx, "Deleted %s.\n", handle); #ifdef HUB write_userfile(idx); #endif /* HUB */ } else dprintf(idx, "Failed.\n"); } static void cmd_pls_host(struct userrec *u, int idx, char *par) { char *handle = NULL, *host = NULL; struct userrec *u2 = NULL; struct list_type *q = NULL; struct flag_record fr2 = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 }, fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 }; putlog(LOG_CMDS, "*", "#%s# +host %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: +host [handle] [anotherhost] ...\n"); return; } handle = newsplit(&par); if (par[0]) { host = newsplit(&par); u2 = get_user_by_handle(userlist, handle); } else { host = handle; handle = dcc[idx].nick; u2 = u; } if (!u2 || !u) { dprintf(idx, "No such user.\n"); return; } get_user_flagrec(u, &fr, NULL); if (egg_strcasecmp(handle, dcc[idx].nick)) { get_user_flagrec(u2, &fr2, NULL); if (!glob_master(fr) && !glob_bot(fr2) && !chan_master(fr)) { dprintf(idx, "You can't add hostmasks to non-bots.\n"); return; } if (!glob_owner(fr) && glob_bot(fr2)) { dprintf(idx, "You can't add hostmasks to bots.\n"); return; } if (glob_admin(fr2) && !isowner(u->handle)) { dprintf(idx, "You can't add hostmasks to an admin.\n"); return; } if ((glob_owner(fr2) || glob_master(fr2)) && !glob_owner(fr)) { dprintf(idx, "You can't add hostmasks to a bot owner/master.\n"); return; } if ((chan_owner(fr2) || chan_master(fr2)) && !glob_master(fr) && !glob_owner(fr) && !chan_owner(fr)) { dprintf(idx, "You can't add hostmasks to a channel owner/master.\n"); return; } if (!glob_master(fr) && !chan_master(fr)) { dprintf(idx, "Permission denied.\n"); return; } } if (!chan_master(fr) && get_user_by_host(host)) { dprintf(idx, "You cannot add a host matching another user!\n"); return; } for (q = get_user(&USERENTRY_HOSTS, u); q; q = q->next) if (!egg_strcasecmp(q->extra, host)) { dprintf(idx, "That hostmask is already there.\n"); return; } addhost_by_handle(handle, host); update_mod(handle, dcc[idx].nick, "+host", host); dprintf(idx, "Added host '%s' to %s.\n", host, handle); while (par[0]) { host = newsplit(&par); addhost_by_handle(handle, host); dprintf(idx, "Added host '%s' to %s.\n", host, handle); } #ifdef LEAF check_this_user(handle, 0, NULL); #endif /* LEAF */ #ifdef HUB write_userfile(idx); #endif /* HUB */ } static void cmd_mns_host(struct userrec *u, int idx, char *par) { char *handle = NULL, *host = NULL; struct userrec *u2 = NULL; struct flag_record fr2 = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 }, fr = {FR_GLOBAL | FR_CHAN | FR_ANYWH, 0, 0, 0 }; putlog(LOG_CMDS, "*", "#%s# -host %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: -host [handle] \n"); return; } handle = newsplit(&par); if (par[0]) { host = newsplit(&par); u2 = get_user_by_handle(userlist, handle); } else { host = handle; handle = dcc[idx].nick; u2 = u; } if (!u2 || !u) { dprintf(idx, "No such user.\n"); return; } get_user_flagrec(u, &fr, NULL); get_user_flagrec(u2, &fr2, NULL); /* check to see if user is +d or +k and don't let them remove hosts from THEMSELVES*/ if (u == u2 && (glob_deop(fr) || glob_kick(fr) || (!glob_master(fr) && (chan_deop(fr) || chan_kick (fr))))) { dprintf(idx, "You can't remove hostmasks from yourself while having the +d or +k flag.\n"); return; } if (egg_strcasecmp(handle, dcc[idx].nick)) { if (!glob_master(fr) && !glob_bot(fr2) && !chan_master(fr)) { dprintf(idx, "You can't remove hostmasks from non-bots.\n"); return; } if (glob_bot(fr2) && !glob_owner(fr)) { dprintf(idx, "You can't remove hostmasks from bots.\n"); return; } if (glob_admin(fr2) && !isowner(u->handle)) { dprintf(idx, "You can't remove hostmasks from an admin.\n"); return; } if ((glob_owner(fr2) || glob_master(fr2)) && !glob_owner(fr)) { dprintf(idx, "You can't remove hostmasks from a bot owner/master.\n"); return; } if ((chan_owner(fr2) || chan_master(fr2)) && !glob_master(fr) && !glob_owner(fr) && !chan_owner(fr)) { dprintf(idx, "You can't remove hostmasks from a channel owner/master.\n"); return; } if (!glob_master(fr) && !chan_master(fr)) { dprintf(idx, "Permission denied.\n"); return; } } if (delhost_by_handle(handle, host)) { dprintf(idx, "Removed '%s' from %s.\n", host, handle); update_mod(handle, dcc[idx].nick, "-host", host); #ifdef LEAF check_this_user(handle, 2, host); #endif /* LEAF */ #ifdef HUB write_userfile(idx); #endif /* HUB */ } else dprintf(idx, "Failed.\n"); } /* netserver */ static void cmd_netserver(struct userrec * u, int idx, char * par) { putlog(LOG_CMDS, "*", "#%s# netserver", dcc[idx].nick); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, "cursrv"); } static void cmd_botserver(struct userrec * u, int idx, char * par) { putlog(LOG_CMDS, "*", "#%s# botserver %s", dcc[idx].nick, par); if (!par || !par[0]) { dprintf(idx, "Usage: botserver \n"); return; } if (nextbot(par)<0) { dprintf(idx, "%s isn't a linked bot\n", par); } botnet_send_cmd(conf.bot->nick, par, u->handle, idx, "cursrv"); } static void rcmd_cursrv(char * fbot, char * fhand, char * fidx) { #ifdef LEAF char tmp[2048] = ""; if (server_online) sprintf(tmp, "Currently: %-40s Lag: %d", cursrvname, server_lag); else sprintf(tmp, "Currently: none"); botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, tmp); #endif /* LEAF */ } static void cmd_timesync(struct userrec *u, int idx, char *par) { char tmp[30] = ""; putlog(LOG_CMDS, "*", "#%s# timesync", dcc[idx].nick); sprintf(tmp, "timesync %li", timesync + now); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, tmp); } static void rcmd_timesync(char *frombot, char *fromhand, char *fromidx, char *par) { char tmp[1024] = ""; time_t net; net = atol(par); sprintf(tmp, "NET: %li ME: %li DIFF: %li", net, timesync + now, (timesync+now) - net); botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, tmp); } #ifdef HUB /* netversion */ static void cmd_netversion(struct userrec * u, int idx, char * par) { putlog(LOG_CMDS, "*", "#%s# netversion", dcc[idx].nick); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, "ver"); } static void cmd_botversion(struct userrec * u, int idx, char * par) { putlog(LOG_CMDS, "*", "#%s# botversion %s", dcc[idx].nick, par); if (!par || !par[0]) { dprintf(idx, "Usage: botversion \n"); return; } if (nextbot(par)<0) { dprintf(idx, "%s isn't a linked bot\n", par); } botnet_send_cmd(conf.bot->nick, par, u->handle, idx, "ver"); } #endif /* HUB */ static void rcmd_ver(char * fbot, char * fhand, char * fidx) { char tmp[2048] = ""; struct utsname un; sprintf(tmp, "%s ", version); if (uname(&un) < 0) { strcat(tmp, "(unknown OS)"); } else { sprintf(tmp + strlen(tmp), "%s %s (%s)", un.sysname, un.release, un.machine); } botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, tmp); } /* netnick, botnick */ static void cmd_netnick (struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# netnick", dcc[idx].nick); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, "curnick"); } static void cmd_botnick(struct userrec * u, int idx, char * par) { putlog(LOG_CMDS, "*", "#%s# botnick %s", dcc[idx].nick, par); if (!par || !par[0]) { dprintf(idx, "Usage: botnick \n"); return; } if (nextbot(par) < 0) { dprintf(idx, "%s isn't a linked bot\n", par); } botnet_send_cmd(conf.bot->nick, par, u->handle, idx, "curnick"); } static void rcmd_curnick(char * fbot, char * fhand, char * fidx) { #ifdef LEAF char tmp[1024] = ""; if (server_online) sprintf(tmp, "Currently: %-20s ", botname); if (strncmp(botname, origbotname, strlen(botname))) sprintf(tmp, "%sWant: %s", tmp, origbotname); if (!server_online) sprintf(tmp, "%s(not online)", tmp); botnet_send_cmdreply(conf.bot->nick, fbot, fhand, fidx, tmp); #endif /* LEAF */ } /* netmsg, botmsg */ static void cmd_botmsg(struct userrec * u, int idx, char * par) { char *tnick = NULL, *tbot = NULL, tmp[1024] = ""; putlog(LOG_CMDS, "*", "#%s# botmsg %s", dcc[idx].nick, par); tbot = newsplit(&par); if (par[0]) tnick = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: botmsg \n"); return; } if (nextbot(tbot)<0) { dprintf(idx, "No such bot linked\n"); return; } egg_snprintf(tmp, sizeof tmp, "msg %s %s", tnick, par); botnet_send_cmd(conf.bot->nick, tbot, u->handle, idx, tmp); } static void cmd_netmsg(struct userrec * u, int idx, char * par) { char *tnick = NULL, tmp[1024] = ""; putlog(LOG_CMDS, "*", "#%s# netmsg %s", dcc[idx].nick, par); tnick = newsplit(&par); if (!par[0]) { dprintf(idx, "Usage: netmsg \n"); return; } egg_snprintf(tmp, sizeof tmp, "msg %s %s", tnick, par); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, tmp); } static void rcmd_msg(char * tobot, char * frombot, char * fromhand, char * fromidx, char * par) { #ifdef LEAF char buf[1024] = "", *nick = NULL; nick = newsplit(&par); dprintf(DP_SERVER, "PRIVMSG %s :%s\n", nick, par); if (!strcmp(tobot, conf.bot->nick)) { egg_snprintf(buf, sizeof buf, "Sent message to %s", nick); botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, buf); } #endif /* LEAF */ } #ifdef HUB /* netlag */ static void cmd_netlag(struct userrec * u, int idx, char * par) { time_t tm; egg_timeval_t tv; char tmp[64] = ""; putlog(LOG_CMDS, "*", "#%s# netlag", dcc[idx].nick); timer_get_now(&tv); tm = (tv.sec % 10000) * 100 + (tv.usec * 100) / (1000000); sprintf(tmp, "ping %li", tm); dprintf(idx, "Sent ping to all linked bots\n"); botnet_send_cmd_broad(-1, conf.bot->nick, u->handle, idx, tmp); } #endif /* HUB */ static void rcmd_ping(char * frombot, char *fromhand, char * fromidx, char * par) { char tmp[64] = ""; egg_snprintf(tmp, sizeof tmp, "pong %s", par); botnet_send_cmd(conf.bot->nick, frombot, fromhand, atoi(fromidx), tmp); } static void rcmd_pong(char *frombot, char *fromhand, char *fromidx, char *par) { int i = atoi(fromidx); if ((i >= 0) && (i < dcc_total) && (dcc[i].type == &DCC_CHAT) && (!strcmp(dcc[i].nick, fromhand))) { time_t tm; egg_timeval_t tv; timer_get_now(&tv); tm = ((tv.sec % 10000) * 100 + (tv.usec * 100) / (1000000)) - atoi(par); dprintf(i, "Pong from %s: %li.%li seconds\n", frombot, (tm / 100), (tm % 100)); } } /* exec commands */ #ifdef HUB static void cmd_netw(struct userrec * u, int idx, char * par) { char tmp[128] = ""; putlog(LOG_CMDS, "*", "#%s# netw", dcc[idx].nick); strcpy(tmp, "exec w"); botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, tmp); } static void cmd_netps(struct userrec * u, int idx, char * par) { char buf[1024] = ""; putlog(LOG_CMDS, "*", "#%s# netps %s", dcc[idx].nick, par); if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>')) { putlog(LOG_WARN, "*", "%s attempted 'netps' with pipe/semicolon in parameters: %s", dcc[idx].nick, par); dprintf(idx, "No."); return; } egg_snprintf(buf, sizeof par, "exec ps %s", par); botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf); } static void cmd_netlast(struct userrec * u, int idx, char * par) { char buf[1024] = ""; putlog(LOG_CMDS, "*", "#%s# netlast %s", dcc[idx].nick, par); if (strchr(par, '|') || strchr(par, '<') || strchr(par, ';') || strchr(par, '>')) { putlog(LOG_WARN, "*", "%s attempted 'netlast' with pipe/semicolon in parameters: %s", dcc[idx].nick, par); dprintf(idx, "No."); return; } egg_snprintf(buf, sizeof par, "exec last %s", par); botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf); } #endif /* HUB */ void crontab_show(struct userrec *u, int idx) { dprintf(idx, "Showing current crontab:\n"); #ifndef CYGWIN_HACKS if (!exec_str(idx, "crontab -l | grep -v \"^#\"")) dprintf(idx, "Exec failed"); #endif /* !CYGWIN_HACKS */ } #ifndef CYGWIN_HACKS static void cmd_crontab(struct userrec *u, int idx, char *par) { char *code = NULL; int i; putlog(LOG_CMDS, "*", "#%s# crontab %s", dcc[idx].nick, par); if (!par[0]) { dprintf(idx, "Usage: crontab [interval]\n"); return; } code = newsplit(&par); if (!strcmp(code, "status")) { i = crontab_exists(); if (!i) dprintf(idx, "No crontab\n"); else if (i==1) dprintf(idx, "Crontabbed\n"); else dprintf(idx, "Error checking crontab status\n"); } else if (!strcmp(code, "show")) { crontab_show(u, idx); } else if (!strcmp(code, "delete")) { crontab_del(); i = crontab_exists(); if (!i) dprintf(idx, "No crontab\n"); else if (i==1) dprintf(idx, "Crontabbed\n"); else dprintf(idx, "Error checking crontab status\n"); } else if (!strcmp(code, "new")) { i = atoi(par); if ((i <= 0) || (i > 60)) i = 10; crontab_create(i); i = crontab_exists(); if (!i) dprintf(idx, "No crontab\n"); else if (i == 1) dprintf(idx, "Crontabbed\n"); else dprintf(idx, "Error checking crontab status\n"); } else { dprintf(idx, "Usage: crontab status|delete|show|new [interval]\n"); } } #endif /* !CYGWIN_HACKS */ #ifdef HUB static void cmd_netcrontab(struct userrec * u, int idx, char * par) { char buf[1024] = "", *cmd = NULL; putlog(LOG_CMDS, "*", "#%s# netcrontab %s", dcc[idx].nick, par); cmd = newsplit(&par); if ((strcmp(cmd, "status") && strcmp(cmd, "show") && strcmp(cmd, "delete") && strcmp(cmd, "new"))) { dprintf(idx, "Usage: netcrontab [interval]\n"); return; } egg_snprintf(buf, sizeof buf, "exec crontab %s %s", cmd, par); botnet_send_cmd_broad(-1, conf.bot->nick, dcc[idx].nick, idx, buf); } #endif /* HUB */ static void rcmd_exec(char * frombot, char * fromhand, char * fromidx, char * par) { char *cmd = NULL, scmd[512] = "", *out = NULL, *err = NULL; cmd = newsplit(&par); scmd[0] = 0; if (!strcmp(cmd, "w")) { strcpy(scmd, "w"); } else if (!strcmp(cmd, "last")) { char user[20] = ""; if (par[0]) { strncpyz(user, par, sizeof(user)); } else if (conf.username) { strncpyz(user, conf.username, sizeof(user)); } if (!user[0]) { botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Can't determine user id for process"); return; } egg_snprintf(scmd, sizeof scmd, "last %s", user); } else if (!strcmp(cmd, "ps")) { egg_snprintf(scmd, sizeof scmd, "ps %s", par); } else if (!strcmp(cmd, "raw")) { egg_snprintf(scmd, sizeof scmd, "%s", par); } else if (!strcmp(cmd, "kill")) { egg_snprintf(scmd, sizeof scmd, "kill %s", par); #ifndef CYGWIN_HACKS } else if (!strcmp(cmd, "crontab")) { char *code = newsplit(&par); scmd[0] = 0; if (!strcmp(code, "show")) { strcpy(scmd, "crontab -l | grep -v \"^#\""); } else if (!strcmp(code, "delete")) { crontab_del(); } else if (!strcmp(code, "new")) { int i=atoi(par); if ((i <= 0) || (i > 60)) i = 10; crontab_create(i); } if (!scmd[0]) { char s[200] = ""; int i = crontab_exists(); if (!i) sprintf(s, "No crontab"); else if (i == 1) sprintf(s, "Crontabbed"); else sprintf(s, "Error checking crontab status"); botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, s); } #endif /* !CYGWIN_HACKS */ } if (!scmd[0]) return; if (shell_exec(scmd, NULL, &out, &err)) { if (out) { char *p = NULL, *np = NULL; botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Result:"); p = out; while (p && p[0]) { np = strchr(p, '\n'); if (np) *np++ = 0; botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, p); p = np; } free(out); } if (err) { char *p = NULL, *np = NULL; botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Errors:"); p = err; while (p && p[0]) { np = strchr(p, '\n'); if (np) *np++ = 0; botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, p); p = np; } free(err); } } else { botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "exec failed"); } } static void cmd_botjump(struct userrec * u, int idx, char * par) { char *tbot = NULL, buf[1024] = ""; putlog(LOG_CMDS, "*", "#%s# botjump %s", dcc[idx].nick, par); tbot = newsplit(&par); if (!tbot[0]) { dprintf(idx, "Usage: botjump [server [port [pass]]]\n"); return; } if (nextbot(tbot)<0) { dprintf(idx, "No such linked bot\n"); return; } egg_snprintf(buf, sizeof buf, "jump %s", par); botnet_send_cmd(conf.bot->nick, tbot, dcc[idx].nick, idx, buf); } static void rcmd_jump(char * frombot, char * fromhand, char * fromidx, char * par) { #ifdef LEAF char *other = NULL; int port; if (par[0]) { other = newsplit(&par); port = atoi(newsplit(&par)); if (!port) port = default_port; strncpyz(newserver, other, 120); newserverport = port; strncpyz(newserverpass, par, 120); } botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Jumping..."); nuke_server("Jumping..."); cycle_time = 0; #endif /* LEAF */ } /* "Remotable" commands */ void gotremotecmd (char *forbot, char *frombot, char *fromhand, char *fromidx, char *cmd) { char *par = cmd; cmd = newsplit(&par); if (!strcmp(cmd, "exec")) { rcmd_exec(frombot, fromhand, fromidx, par); } else if (!strcmp(cmd, "curnick")) { rcmd_curnick(frombot, fromhand, fromidx); } else if (!strcmp(cmd, "cursrv")) { rcmd_cursrv(frombot, fromhand, fromidx); } else if (!strcmp(cmd, "jump")) { rcmd_jump(frombot, fromhand, fromidx, par); } else if (!strcmp(cmd, "msg")) { rcmd_msg(forbot, frombot, fromhand, fromidx, par); } else if (!strcmp(cmd, "ver")) { rcmd_ver(frombot, fromhand, fromidx); } else if (!strcmp(cmd, "ping")) { rcmd_ping(frombot, fromhand, fromidx, par); } else if (!strcmp(cmd, "pong")) { rcmd_pong(frombot, fromhand, fromidx, par); } else if (!strcmp(cmd, "die")) { exit(0); } else if (!strcmp(cmd, "timesync")) { rcmd_timesync(frombot, fromhand, fromidx, par); } else { botnet_send_cmdreply(conf.bot->nick, frombot, fromhand, fromidx, "Unrecognized remote command"); } } void gotremotereply (char *frombot, char *tohand, char *toidx, char *ln) { int idx = atoi(toidx); if ((idx >= 0) && (idx < dcc_total) && (dcc[idx].type == &DCC_CHAT) && (!strcmp(dcc[idx].nick, tohand))) { char *buf = NULL; buf = calloc(1, strlen(frombot) + 2 + 1); sprintf(buf, "(%s)", frombot); dprintf(idx, "%-13s %s\n", buf, ln); free(buf); } } static void cmd_traffic(struct userrec *u, int idx, char *par) { unsigned long itmp, itmp2; dprintf(idx, "Traffic since last restart\n"); dprintf(idx, "==========================\n"); if (traffic.out_total.irc > 0 || traffic.in_total.irc > 0 || traffic.out_today.irc > 0 || traffic.in_today.irc > 0) { dprintf(idx, "IRC:\n"); dprintf(idx, " out: %s", btos(traffic.out_total.irc + traffic.out_today.irc)); dprintf(idx, " (%s today)\n", btos(traffic.out_today.irc)); dprintf(idx, " in: %s", btos(traffic.in_total.irc + traffic.in_today.irc)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.irc)); } if (traffic.out_total.bn > 0 || traffic.in_total.bn > 0 || traffic.out_today.bn > 0 || traffic.in_today.bn > 0) { dprintf(idx, "Botnet:\n"); dprintf(idx, " out: %s", btos(traffic.out_total.bn + traffic.out_today.bn)); dprintf(idx, " (%s today)\n", btos(traffic.out_today.bn)); dprintf(idx, " in: %s", btos(traffic.in_total.bn + traffic.in_today.bn)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.bn)); } if (traffic.out_total.dcc > 0 || traffic.in_total.dcc > 0 || traffic.out_today.dcc > 0 || traffic.in_today.dcc > 0) { dprintf(idx, "Partyline:\n"); itmp = traffic.out_total.dcc + traffic.out_today.dcc; itmp2 = traffic.out_today.dcc; dprintf(idx, " out: %s", btos(itmp)); dprintf(idx, " (%s today)\n", btos(itmp2)); dprintf(idx, " in: %s", btos(traffic.in_total.dcc + traffic.in_today.dcc)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.dcc)); } if (traffic.out_total.trans > 0 || traffic.in_total.trans > 0 || traffic.out_today.trans > 0 || traffic.in_today.trans > 0) { dprintf(idx, "Transfer.mod:\n"); dprintf(idx, " out: %s", btos(traffic.out_total.trans + traffic.out_today.trans)); dprintf(idx, " (%s today)\n", btos(traffic.out_today.trans)); dprintf(idx, " in: %s", btos(traffic.in_total.trans + traffic.in_today.trans)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.trans)); } if (traffic.out_total.unknown > 0 || traffic.out_today.unknown > 0) { dprintf(idx, "Misc:\n"); dprintf(idx, " out: %s", btos(traffic.out_total.unknown + traffic.out_today.unknown)); dprintf(idx, " (%s today)\n", btos(traffic.out_today.unknown)); dprintf(idx, " in: %s", btos(traffic.in_total.unknown + traffic.in_today.unknown)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.unknown)); } dprintf(idx, "---\n"); dprintf(idx, "Total:\n"); itmp = traffic.out_total.irc + traffic.out_total.bn + traffic.out_total.dcc + traffic.out_total.trans + traffic.out_total.unknown + traffic.out_today.irc + traffic.out_today.bn + traffic.out_today.dcc + traffic.out_today.trans + traffic.out_today.unknown; itmp2 = traffic.out_today.irc + traffic.out_today.bn + traffic.out_today.dcc + traffic.out_today.trans + traffic.out_today.unknown; dprintf(idx, " out: %s", btos(itmp)); dprintf(idx, " (%s today)\n", btos(itmp2)); dprintf(idx, " in: %s", btos(traffic.in_total.irc + traffic.in_total.bn + traffic.in_total.dcc + traffic.in_total.trans + traffic.in_total.unknown + traffic.in_today.irc + traffic.in_today.bn + traffic.in_today.dcc + traffic.in_today.trans + traffic.in_today.unknown)); dprintf(idx, " (%s today)\n", btos(traffic.in_today.irc + traffic.in_today.bn + traffic.in_today.dcc + traffic.in_today.trans + traffic.in_today.unknown)); putlog(LOG_CMDS, "*", "#%s# traffic", dcc[idx].nick); } static char traffictxt[20] = ""; static char *btos(unsigned long bytes) { char unit[10] = ""; float xbytes; sprintf(unit, "Bytes"); xbytes = bytes; if (xbytes > 1024.0) { sprintf(unit, "KBytes"); xbytes = xbytes / 1024.0; } if (xbytes > 1024.0) { sprintf(unit, "MBytes"); xbytes = xbytes / 1024.0; } if (xbytes > 1024.0) { sprintf(unit, "GBytes"); xbytes = xbytes / 1024.0; } if (xbytes > 1024.0) { sprintf(unit, "TBytes"); xbytes = xbytes / 1024.0; } if (bytes > 1024) sprintf(traffictxt, "%.2f %s", xbytes, unit); else sprintf(traffictxt, "%lu Bytes", bytes); return traffictxt; } static void cmd_whoami(struct userrec *u, int idx, char *par) { putlog(LOG_CMDS, "*", "#%s# whoami", dcc[idx].nick); dprintf(idx, "You are %s@%s.\n", dcc[idx].nick, conf.bot->nick); } static void cmd_quit(struct userrec *u, int idx, char *text) { check_bind_chof(dcc[idx].nick, idx); dprintf(idx, "*** Ja Mata\n"); flush_lines(idx, dcc[idx].u.chat); putlog(LOG_MISC, "*", "DCC connection closed (%s!%s)", dcc[idx].nick, dcc[idx].host); if (dcc[idx].u.chat->channel >= 0) { chanout_but(-1, dcc[idx].u.chat->channel, "*** %s left the party line%s%s\n", dcc[idx].nick, text[0] ? ": " : ".", text); if (dcc[idx].u.chat->channel < GLOBAL_CHANS) { botnet_send_part_idx(idx, text); } } if (dcc[idx].u.chat->su_nick) { dcc[idx].user = get_user_by_handle(userlist, dcc[idx].u.chat->su_nick); strcpy(dcc[idx].nick, dcc[idx].u.chat->su_nick); dcc[idx].type = &DCC_CHAT; dprintf(idx, "Returning to real nick %s!\n", dcc[idx].u.chat->su_nick); free(dcc[idx].u.chat->su_nick); dcc[idx].u.chat->su_nick = NULL; dcc_chatter(idx); if (dcc[idx].u.chat->channel < GLOBAL_CHANS && dcc[idx].u.chat->channel >= 0) { botnet_send_join_idx(idx); } } else if ((dcc[idx].sock != STDOUT) || backgrd) { killsock(dcc[idx].sock); lostdcc(idx); } else { dprintf(DP_STDOUT, "\n### SIMULATION RESET\n\n"); dcc_chatter(idx); } } /* DCC CHAT COMMANDS */ /* Function call should be: * int cmd_whatever(idx,"parameters"); * As with msg commands, function is responsible for any logging. */ cmd_t C_dcc[] = { {"+host", "o|o", (Function) cmd_pls_host, NULL}, {"+ignore", "m", (Function) cmd_pls_ignore, NULL}, {"+user", "m", (Function) cmd_pls_user, NULL}, #ifdef HUB {"-bot", "a", (Function) cmd_mns_user, NULL}, #endif /* HUB */ {"-host", "", (Function) cmd_mns_host, NULL}, {"-ignore", "m", (Function) cmd_mns_ignore, NULL}, {"-user", "m", (Function) cmd_mns_user, NULL}, {"addlog", "mo|o", (Function) cmd_addlog, NULL}, /* {"putlog", "mo|o", (Function) cmd_addlog, NULL}, */ {"about", "", (Function) cmd_about, NULL}, {"addline", "", (Function) cmd_addline, NULL}, {"away", "", (Function) cmd_away, NULL}, {"back", "", (Function) cmd_back, NULL}, #ifdef HUB {"backup", "m|m", (Function) cmd_backup, NULL}, {"boot", "m", (Function) cmd_boot, NULL}, {"botconfig", "n", (Function) cmd_botconfig, NULL}, {"bots", "m", (Function) cmd_bots, NULL}, {"downbots", "m", (Function) cmd_downbots, NULL}, {"bottree", "n", (Function) cmd_bottree, NULL}, {"chaddr", "a", (Function) cmd_chaddr, NULL}, #endif /* HUB */ {"chat", "", (Function) cmd_chat, NULL}, {"chattr", "m|m", (Function) cmd_chattr, NULL}, #ifdef HUB {"chhandle", "m", (Function) cmd_chhandle, NULL}, /* {"chnick", "m", (Function) cmd_chhandle, NULL}, */ {"chpass", "m", (Function) cmd_chpass, NULL}, {"chsecpass", "n", (Function) cmd_chsecpass, NULL}, {"cmdpass", "a", (Function) cmd_cmdpass, NULL}, #endif /* HUB */ {"color", "", (Function) cmd_color, NULL}, {"comment", "m|m", (Function) cmd_comment, NULL}, #ifdef HUB {"config", "n", (Function) cmd_config, NULL}, #endif /* HUB */ {"console", "-|-", (Function) cmd_console, NULL}, {"date", "", (Function) cmd_date, NULL}, {"dccstat", "a", (Function) cmd_dccstat, NULL}, {"debug", "a", (Function) cmd_debug, NULL}, {"timers", "a", (Function) cmd_timers, NULL}, {"die", "n", (Function) cmd_die, NULL}, {"echo", "", (Function) cmd_echo, NULL}, {"fixcodes", "", (Function) cmd_fixcodes, NULL}, {"handle", "", (Function) cmd_handle, NULL}, {"nohelp", "-|-", (Function) cmd_nohelp, NULL}, {"help", "-|-", (Function) cmd_help, NULL}, {"ignores", "m", (Function) cmd_ignores, NULL}, #ifdef HUB {"link", "n", (Function) cmd_link, NULL}, #endif /* HUB */ {"match", "m|m", (Function) cmd_match, NULL}, {"matchbot", "m|m", (Function) cmd_matchbot, NULL}, {"me", "", (Function) cmd_me, NULL}, {"motd", "", (Function) cmd_motd, NULL}, #ifdef HUB {"newleaf", "n", (Function) cmd_newleaf, NULL}, {"nopass", "m", (Function) cmd_nopass, NULL}, #endif /* HUB */ {"newpass", "", (Function) cmd_newpass, NULL}, {"secpass", "", (Function) cmd_secpass, NULL}, /* {"nick", "", (Function) cmd_handle, NULL}, */ {"page", "", (Function) cmd_page, NULL}, {"quit", "", (Function) cmd_quit, NULL}, {"relay", "i", (Function) cmd_relay, NULL}, #ifdef HUB {"reload", "m|m", (Function) cmd_reload, NULL}, #endif /* HUB */ {"restart", "m", (Function) cmd_restart, NULL}, #ifdef HUB {"save", "m|m", (Function) cmd_save, NULL}, #endif /* HUB */ {"simul", "a", (Function) cmd_simul, NULL}, {"status", "m|m", (Function) cmd_status, NULL}, {"strip", "", (Function) cmd_strip, NULL}, {"su", "a", (Function) cmd_su, NULL}, #ifdef HUB {"trace", "n", (Function) cmd_trace, NULL}, #endif /* HUB */ {"traffic", "m", (Function) cmd_traffic, NULL}, {"unlink", "m", (Function) cmd_unlink, NULL}, {"update", "a", (Function) cmd_update, NULL}, #ifdef HUB {"netcrontab", "a", (Function) cmd_netcrontab, NULL}, #endif /* HUB */ {"uptime", "m|m", (Function) cmd_uptime, NULL}, #ifndef CYGWIN_HACKS {"crontab", "a", (Function) cmd_crontab, NULL}, #endif /* !CYGWIN_HACKS */ #ifdef HUB {"who", "n", (Function) cmd_who, NULL}, #endif /* HUB */ {"whois", "", (Function) cmd_whois, NULL}, {"whom", "", (Function) cmd_whom, NULL}, {"whoami", "", (Function) cmd_whoami, NULL}, {"botjump", "m", (Function) cmd_botjump, NULL}, {"botmsg", "o", (Function) cmd_botmsg, NULL}, {"netmsg", "n", (Function) cmd_netmsg, NULL}, {"botnick", "m", (Function) cmd_botnick, NULL}, {"netnick", "m", (Function) cmd_netnick, NULL}, #ifdef HUB {"netw", "n", (Function) cmd_netw, NULL}, {"netps", "n", (Function) cmd_netps, NULL}, {"netlast", "n", (Function) cmd_netlast, NULL}, {"netlag", "m", (Function) cmd_netlag, NULL}, #endif /* HUB */ {"botserver", "m", (Function) cmd_botserver, NULL}, {"netserver", "m", (Function) cmd_netserver, NULL}, {"timesync", "a", (Function) cmd_timesync, NULL}, #ifdef HUB {"botversion", "o", (Function) cmd_botversion, NULL}, {"netversion", "o", (Function) cmd_netversion, NULL}, #endif /* HUB */ {"userlist", "m", (Function) cmd_userlist, NULL}, {"ps", "n", (Function) cmd_ps, NULL}, {"last", "n", (Function) cmd_last, NULL}, {"exec", "a", (Function) cmd_exec, NULL}, {"w", "n", (Function) cmd_w, NULL}, {"channels", "", (Function) cmd_channels, NULL}, {"randstring", "", (Function) cmd_randstring, NULL}, {"md5", "", (Function) cmd_md5, NULL}, {"sha1", "", (Function) cmd_sha1, NULL}, {"conf", "a", (Function) cmd_conf, NULL}, {"encrypt", "", (Function) cmd_encrypt, NULL}, {"decrypt", "", (Function) cmd_decrypt, NULL}, #ifdef HUB {"botcmd", "i", (Function) cmd_botcmd, NULL}, {"bc", "i", (Function) cmd_botcmd, NULL}, {"hublevel", "a", (Function) cmd_hublevel, NULL}, {"lagged", "m", (Function) cmd_lagged, NULL}, {"uplink", "a", (Function) cmd_uplink, NULL}, #endif /* HUB */ {NULL, NULL, NULL, NULL} };