foundationI_fluffos_v1/
foundationI_fluffos_v1/bin/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/ChangeLog.old/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/Win32/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/compat/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/compat/simuls/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/include/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/clone/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/command/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/data/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/etc/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/include/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/inherit/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/inherit/master/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/log/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/single/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/single/tests/compiler/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/single/tests/efuns/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/single/tests/operators/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/testsuite/u/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/tmp/
foundationI_fluffos_v1/fluffos-2.9-ds2.12/windows/
foundationI_fluffos_v1/lib/
foundationI_fluffos_v1/lib/cmds/ambassador/
foundationI_fluffos_v1/lib/cmds/database/
foundationI_fluffos_v1/lib/cmds/soul/
foundationI_fluffos_v1/lib/daemon/include/
foundationI_fluffos_v1/lib/daemon/save/
foundationI_fluffos_v1/lib/daemon/services/
foundationI_fluffos_v1/lib/daemon/soul/
foundationI_fluffos_v1/lib/doc/build/
foundationI_fluffos_v1/lib/doc/build/room/
foundationI_fluffos_v1/lib/doc/build/virtual/
foundationI_fluffos_v1/lib/doc/driver/
foundationI_fluffos_v1/lib/doc/efun/
foundationI_fluffos_v1/lib/doc/etc/
foundationI_fluffos_v1/lib/doc/help/creator/
foundationI_fluffos_v1/lib/doc/help/hm/
foundationI_fluffos_v1/lib/doc/help/user/
foundationI_fluffos_v1/lib/doc/lpc/basic/
foundationI_fluffos_v1/lib/doc/lpc/data_types/
foundationI_fluffos_v1/lib/doc/lpc/etc/
foundationI_fluffos_v1/lib/doc/lpc/intermediate/
foundationI_fluffos_v1/lib/doc/lpc/types/
foundationI_fluffos_v1/lib/doc/mudlib/
foundationI_fluffos_v1/lib/doc/mudlib/features/
foundationI_fluffos_v1/lib/domains/Examples/etc/
foundationI_fluffos_v1/lib/domains/Examples/room/
foundationI_fluffos_v1/lib/domains/Examples/virtual/
foundationI_fluffos_v1/lib/domains/Examples/virtual/exaA/
foundationI_fluffos_v1/lib/domains/Examples/virtual/exaB/
foundationI_fluffos_v1/lib/domains/Examples/weapon/
foundationI_fluffos_v1/lib/domains/Standard/
foundationI_fluffos_v1/lib/domains/Standard/pools/
foundationI_fluffos_v1/lib/domains/Standard/std/
foundationI_fluffos_v1/lib/domains/Standard/xtra/
foundationI_fluffos_v1/lib/include/
foundationI_fluffos_v1/lib/news/
foundationI_fluffos_v1/lib/secure/cfg/
foundationI_fluffos_v1/lib/secure/cmds/adm/
foundationI_fluffos_v1/lib/secure/cmds/ambassador/
foundationI_fluffos_v1/lib/secure/cmds/mortal/
foundationI_fluffos_v1/lib/secure/etc/
foundationI_fluffos_v1/lib/secure/etc/approval/
foundationI_fluffos_v1/lib/secure/etc/elections/
foundationI_fluffos_v1/lib/secure/etc/mudlib/
foundationI_fluffos_v1/lib/secure/etc/quests/
foundationI_fluffos_v1/lib/secure/save/daemon/
foundationI_fluffos_v1/lib/secure/save/postal/d/descartes/
foundationI_fluffos_v1/lib/secure/save/users/d/
foundationI_fluffos_v1/lib/secure/std/
foundationI_fluffos_v1/lib/std/obj/
foundationI_fluffos_v1/lib/std/room/
foundationI_fluffos_v1/lib/std/user/
foundationI_fluffos_v1/lib/std/virtual/
foundationI_fluffos_v1/old/
foundationI_fluffos_v1/win32/
/*    /cmds/mortal/_passwd.c
 *    from Nightmare IV
 *    command for password changing
 *    created by Descartes of Borg 940304
 */

#include <std.h>
#include <daemons.h>
#include <privs.h>
#include <flags.h>

inherit DAEMON;

int cmd_passwd(string str) {
    string nom, what;

    if(previous_object() != this_player(1) || !userp(previous_object()))
      return 0;
    if((int)previous_object()->query_forced()) return 0;
    if((nom = (string)previous_object()->query_name()) == "guest")
      return notify_fail("Guest has no such ability.");
    if(str && str != "") {
        if(sscanf(str, "%s %s", str, what) != 2) return 0;
        if(!user_exists(str)) return notify_fail("No such user.\n");
        if(!member_group(nom, "SECURE")) return 0;
        if(member_group(lower_case(str), "SECURE")) return 0;
        USERS_D->change_password(str, what);
        message("system", "Password changed.", this_player());
        return 1;
    }
    message("system", sprintf("Changing %s password on %s.",
      possessive_noun(capitalize(nom)), mud_name()), previous_object());
    message("prompt", "Old password: ", this_player());
    input_to("check_password", I_NOECHO | I_NOESC);
    return 1;
}

nomask static void check_password(string pass) {
    string password;

    if(!pass) {
        message("system", "Password change failed.", this_player());
        return;
    }
    password = (string) this_player()->query_password();
    if(password != crypt(pass, password)) {
        message("system", "Password change failed.", this_player());
        return;
    }
    message("prompt", "\nNew password: ", this_player());
    input_to("new_password", I_NOECHO | I_NOESC);
}

nomask static void new_password(string pass) {
    if(strlen(pass) < 5) {
        message("system", "\nPasswords must contain at least 5 characters.",
          this_player());
        return;
    }
    message("prompt", "\nConfirm password: ", this_player());
    input_to("confirm_password", I_NOECHO | I_NOESC, pass);
}

nomask static void confirm_password(string pass2, string pass1) {
    if(pass1 != pass2) {
        message("system", "\nPasswords do not match.", this_player());
        return;
    }
    if(this_player(1) != this_player()) {
        message("system", "\nThis is a bad thing.", this_player());
        return;
    }
    this_player()->set_password(crypt(pass2, 0));
    message("system", "\nPassword changed.", this_player());
}

void help() {
    message("help", "Syntax: <passwd>\n\n"
      "Command for changing your password.  You should do this every few "
      "months, or if you suspect someone else may have learned your "
      "password.  You are responsible for anything that happens with your "
      "character, so it is in your best interest to make sure others cannot "
      "access it.  Passwords must be at least 5 characters in length. "
      "It is recommended that your password contain a mix of numbers and "
      "both upper case and lower case letters.", this_player());
    if(member_group(this_player(), PRIV_SECURE))
      message("help", "\n\nSuperuser help for passwd command.\n"
        "In addition to changing your own password, the following "
        "syntax may be used to change the password of others:\n"
        "<passwd [user] [newpassword]>\n", this_player());
}