ASP.NET Session Mix-up using StateServer (SCARY!)

后端 未结 6 1267
醉梦人生
醉梦人生 2020-12-08 05:08

We store two objects in session. Somehow, one of the objects from another user got loaded into a different user\'s session. The user should have had no access to this partic

6条回答
  •  北海茫月
    2020-12-08 05:52

    Look for bugs in your own code first - this is by far the most likely explanation. E.g. using static fields or other shared memory such as the ASP.NET cache for user-specific data.

提交回复
热议问题