Disallow sharing the same login

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

  1. #1

    Default Disallow sharing the same login

    Hello,

    I'm not sure if this is the right newsgroup. I'm wondering if anyone out
    there are experienced with solving this problem and can share your opinion
    or give me some advice. I'm planning to disallow multiple users of our .net
    application to share the same login. How do I do that? Tracking IP address
    of the computer they use? But is that true different machines out there
    might have the same IP address because they use the same router?

    Thanks!


    Zeng Guest

  2. Similar Questions and Discussions

    1. Disallow hyperlink in form
      Hi all Is there any way that i can disallow hyperlink in a form, ie <a href="link">? The spammers has found my forums...
    2. session problem - login screen continually reloads after pressing the login button
      I am trying to get sessions to work on a log in screen to give certain users access to certain pages/directories. The problem is that when the...
    3. [PHP-DEV] --enable-versioning does not work (was: [PHP-DEV] [PATCH] disallow
      On Fri, 14 Nov 2003, Sascha Schumann wrote: I say again: PHP shared extensions has nothing to do with this. If you compile PHP 5 (or 4, or...
    4. [PHP-DEV] [PATCH] disallow --enable-versioning with shared
      Heh, too bad I remembered this mail after spending some hours trying to get php4 + php5 work as DSO on same apache. :) I have both enabled now and...
    5. [PHP-DEV] [PATCH] disallow --enable-versioning with shared modules
      --enable-versioning requests that the linker just exports certain entries in the dynamic symbol table; this is not compatible with the use of...
  3. #2

    Default Re: Disallow sharing the same login

    This is fairly difficult to do.

    Do you want to prevent someone sharing a login? Or do you want to prevent
    concurrent logins? The former is quite difficult to do - and it's a problem
    that afflicts any authentication scheme, anyone can turn a private key into
    a shared key. You could require users to use biometric identification or
    similar, as that is difficult to share.

    Cheers
    Ken


    "Zeng" <zzy@nonospam.com> wrote in message
    news:eXyJedWiEHA.632@TK2MSFTNGP12.phx.gbl...
    > Hello,
    >
    > I'm not sure if this is the right newsgroup. I'm wondering if anyone out
    > there are experienced with solving this problem and can share your opinion
    > or give me some advice. I'm planning to disallow multiple users of our
    > .net
    > application to share the same login. How do I do that? Tracking IP
    > address
    > of the computer they use? But is that true different machines out there
    > might have the same IP address because they use the same router?
    >
    > Thanks!
    >
    >

    Ken Schaefer Guest

  4. #3

    Default Re: Disallow sharing the same login

    I would like to prevent someone sharing a login but I know that it would
    know that would be difficult so it would be acceptable to prevent concurrent
    logins. So here is my current plan, each time a user logins we will create
    a unique id (a guid for example) and store it both in the cookie and in our
    server for the login name. Our server will check for matching of that id for
    each subsequent access (read, write data etc), if it is not matched, then we
    will automatically log the user out. So if 2 people are using the same
    login name, the last one log in will kick the first one out. Does anybody
    see any problem with that approach?

    Thank you very much advance for you help!


    "Ken Schaefer" <kenREMOVE@THISadOpenStatic.com> wrote in message
    news:uUFHk$YiEHA.3608@TK2MSFTNGP09.phx.gbl...
    > This is fairly difficult to do.
    >
    > Do you want to prevent someone sharing a login? Or do you want to prevent
    > concurrent logins? The former is quite difficult to do - and it's a
    problem
    > that afflicts any authentication scheme, anyone can turn a private key
    into
    > a shared key. You could require users to use biometric identification or
    > similar, as that is difficult to share.
    >
    > Cheers
    > Ken
    >
    >
    > "Zeng" <zzy@nonospam.com> wrote in message
    > news:eXyJedWiEHA.632@TK2MSFTNGP12.phx.gbl...
    > > Hello,
    > >
    > > I'm not sure if this is the right newsgroup. I'm wondering if anyone
    out
    > > there are experienced with solving this problem and can share your
    opinion
    > > or give me some advice. I'm planning to disallow multiple users of our
    > > .net
    > > application to share the same login. How do I do that? Tracking IP
    > > address
    > > of the computer they use? But is that true different machines out there
    > > might have the same IP address because they use the same router?
    > >
    > > Thanks!
    > >
    > >
    >
    >

    Zeng 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