What does CF do when a second user attempts a doublelogin?

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default What does CF do when a second user attempts a doublelogin?

    One user is logged in. What does the Coldfusion server
    do when a second user attempts to login, using the first user's
    login credentials? Please give as much technical detail as you can.
    BKBK Guest

  2. Similar Questions and Discussions

    1. Detect Login Attempts
      Hi All, I am trying to think of a technique to lock the user out say 5-10 minutes if that user failed to authenticate three times consecutively...
    2. Trying to make ref to third party webservice: Studio attempts to download file???
      I am trying to reference a web service in the following format: http://webservices.3rdParty.com/wsdl/TheirService.wsdl Now obviously they have a...
    3. how to track where user attempts login
      I have an admin equivalent account that I recently had to change the password for due to a change in personnel. The admin account now gets locked...
    4. transaction aborts on alternate identical attempts
      Hi I have a page that uploads an xml file and reads it into a SQL database. The page is transactional and aborts if there are any anomalies in...
    5. fail login attempts
      Hi ,i want to configure my ssh daemon on my Linux server to limit fail login attempts ,I know that i can configure sshd to disconnect after some...
  3. #2

    Default Re: What does CF do when a second user attempts adouble login?

    Technically, CF logs her in.

    Users can log in for as many sessions as your server can handle.

    It's a good thing!
    MikerRoo Guest

  4. #3

    Default Re: What does CF do when a second user attempts adouble login?

    >... Users
    Thanks. However, I meant 'one user' with multiple sessions, simultaneously.
    Such sessions would, of course, contain identical session keys that come
    in from cfloginuser, by virtue of loginStorage="session". The security
    implications are enormous.

    BKBK Guest

  5. #4

    Default Re: What does CF do when a second user attempts adouble login?

    I, too, was referring to one user with multiple sessions. There is no harm in
    this, whatsoever, and we see it all the time here.

    The login information from one session does not cross pollinate to another.

    In fact the only issue is with poorly designed sites -- that track the wrong
    info by session -- when the user has more than one window sharing the same
    session. Then you see state pollution and the user is angry -- but there are
    no security problems.

    In fact, unless you can forbid the use of IE (which is a great idea, but the
    boss is a slow learner), you probably can't limit the user to just one session.
    Or, if you do, you'll lose customers or have coworkers demanding your head
    (justifiably).

    If you really want that much control, just buy ankle bracelets and be done
    with it.
    :heart;

    MikerRoo Guest

  6. #5

    Default Re: What does CF do when a second user attempts adouble login?

    >... login information from one session does not cross pollinate to another
    >... there are no security problems
    I don't think this is correct. You ignore the issue of identical login
    credentials,
    which is actually the main motivation behind my post. Assume that this forum
    is on the same server as Macromedia Sales. If, while you're logged in at this
    forum, typing away, someone else simultaneously buys CFMX7, using your
    login information. Are you saying there are no security problems there? Then
    you go for that appointment with your bank manager. He proceeds to explain
    to you how the new e-banking services work. Finally, he logs you in for a
    demo.
    During the demo someone logs into your account [N.B.: identical login
    credentials].
    You still see no security problems?


    BKBK Guest

  7. #6

    Default Re: What does CF do when a second user attempts a double login?

    > >... login information from one session does not cross pollinate to
    another
    > >... there are no security problems
    > I don't think this is correct. You ignore the issue of identical login
    > credentials,
    > which is actually the main motivation behind my post. Assume that this
    forum
    > is on the same server as Macromedia Sales. If, while you're logged in at
    this
    > forum, typing away, someone else simultaneously buys CFMX7,
    That someone else would have to have control of your cookies, which usually
    means that he's on the same psyhical computer as you are.

    using your
    > login information. Are you saying there are no security problems there?
    Then
    > you go for that appointment with your bank manager. He proceeds to
    explain
    > to you how the new e-banking services work. Finally, he logs you in for a
    > demo.
    > During the demo someone logs into your account [N.B.: identical login
    > credentials].
    > You still see no security problems?
    I don't see a security issue... he must access the account from your
    computer, it would not work if he goes to another computer and tries to log
    in...

    --
    <mack />


    Neculai Macarie 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