Preventing saved passwords

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Preventing saved passwords

    I have developed a web site running on Win2k and IIS.
    It uses Integrated Windows Authentication. When the user
    selects
    the URL for the site, they are prompted for their Network
    Password. On this dialog is a checkbox 'Save this
    password
    to your password list'. If the user checks this, their
    password
    will be pre-entered the next time the page is opened.

    My question is, How can I force the
    users to have to enter their password even if they
    have checked the 'Save Password' box?
    Peter Brown Guest

  2. Similar Questions and Discussions

    1. Where are passwords saved?
      I previously clicked "remember my password", but now I need the password dialog to come up. Where is the password saved? If I can find it and delete...
    2. Encrypting Passwords
      When developing a login page, does setting the text box property to "password" encrypt the password? To ensure encryption should I use the php...
    3. passwords
      would like to undo a saved password, how do I do this? Thanks in advance
    4. email account and other passwords not saved
      I recently purchased a new computer with XP home as the OS. I connect to the Internet through a cable modem on my old computer through a router. ...
    5. Why are passwords in /etc?
      This may be a silly question: Why is /etc/shadow in /etc? Generally, applications and static data go in /usr. You could mount /usr read-only...
  3. #2

    Default Preventing saved passwords

    You do not have control over this unfortunately. In
    fact, if the users are on your local network they could
    easily configure IE to just pass through their
    credentials without prompting. To address this security
    concern you can do two things:

    1. Educate users to not do it (best approach)
    2. Programatically login to the domain using forms
    authentication going against Active Directory. You might
    not be using a domain to authenticate, but if you are
    here's a good link to a VB.Net sample of using forms
    authentication against Active Directory:

    [url]http://support.microsoft.com/default.aspx?scid=kb;EN-[/url]
    US;326340

    Choice two is good because any browser can support NTLM
    authenication. Only IE and Mozilla/Netscape support
    NTLM. No support for Apple Safari or Konqueror on Linux.

    Good luck.
    >-----Original Message-----
    >I have developed a web site running on Win2k and IIS.
    >It uses Integrated Windows Authentication. When the
    user
    >selects
    >the URL for the site, they are prompted for their Network
    >Password. On this dialog is a checkbox 'Save this
    >password
    >to your password list'. If the user checks this, their
    >password
    >will be pre-entered the next time the page is opened.
    >
    >My question is, How can I force the
    >users to have to enter their password even if they
    >have checked the 'Save Password' box?
    >.
    >
    Keith Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139