In an ASP.NET web app, using Integrated Windows Authentication, is the session tied to the windows identity?
In other words, if I login (using IWA) to the app, and the app stores some "stuff" in my session, is this stuff accessible by session id alone? For instance, if a malicious someone managed to steal my session id, but NOT my credentials, can he then access my session stuff? Or is this session accessible only to the same identity, requiring both the session id AND the windows identity to access it?
Session Management with Windows Authentication
4.2k Views Asked by AviD At
1
There are 1 best solutions below
Related Questions in ASP.NET
- Create an IIS web request activity light
- Writing/Overwriting to specific XML file from ASP.NET code behind
- What is the point of definnig Asp.net Intrinsic Objects In different places and what is the different betwen them?
- Deleting Orphans with Fluent NHibernate
- IOrderedEnumerable to vb.net IOrderedEnumerable Conversion
- Entity Framework Code First with Fluent API Concurrency `DbUpdateConcurrencyException` Not Raising
- Getting deeply embedded XML element values
- What is best way to check if any of the property of object is null or empty?
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- ASP-MVC Code-first migrations checkbox not active
- How do i add onclient click to my jquery button
- Jquery: Change contents of <select> tag dynamically
- Retrieving data from Oracle database
- ASP.NET: Fill Textbox field upon dropdownlist selection by user
- Why web API return 404 when deploy to IIS
Related Questions in IIS
- Create an IIS web request activity light
- Why web API return 404 when deploy to IIS
- Adding site Binding programmatically IIS 7.5
- .net Web Api 2 Owin authentication token expires suddenly and often on IIS 8.5
- Redirecting subdomain to directory on Azure
- Saving Image To a Temp Folder is Loosing Session
- The page cannot be displayed because an internal server error has occurred on server
- Approach for performing long running tasks in .NET
- Why does IIS Anonymous Authentication turn on by itself after I publish my project to server?
- IIS 7 ERR_CONNECTION_TIMED_OUT only with public IP
- Maximum value for IIS .NET Compilation Batch Time-out
- ASP.Net 1.1 app on IIS 7 waiting threads
- File upload web api 2.0 error after deployment on IIS 8.5
- nginx and IIS - dealing with invalid hostname and SSL
- Allow console application to access Windows Authenticated web app
Related Questions in WINDOWS-AUTHENTICATION
- Where can I find user identity when using webapi with Windows Authentication on IIS8
- Use a desktop application outside of corp network
- Windows Authentication - Restrict SQL Server Backend Access
- Connecting to MSSQL server in PHP using integrated authentication
- Access secured Web Services using integrated windows authentication from Angular app on different server
- IIS and SQL Server ASP.Net C# Entity Framework Windows authentication
- Time lag in changes to Active Directory security groups and User Roles
- Preventing negotiation handshake on subsequent service calls
- web service/api supporting basic, anonymous and windows authentication
- Single sign-on flow using ASP.NET MVC + Active Directory
- Single Sign-On in Windows Applications using AD login
- IIS and Windows authentication not allowing error pages
- Winforms and SQL server windows authentication
- identityserver3 Oauth2 with logged in Windows User
- Web Forms Windows Authentication w/ Remote SQL Database
Related Questions in SESSION-MANAGEMENT
- Spring Social and Session Registry
- Struts2 Session cluster - Issue with non serialized object - when TokenSessionInterceptor is used(2.3.16) version
- spring security session times out
- Can we put condition before session timeout in spring?
- Using redis in spring boot application with separate IdP server
- is there a way to filter/suppress HTML from making it to the client?
- SessionMap vs Map which is better for Session?
- How to redirect web application flow to specific page when session ends?
- Ignite Web Session Clustering design delima
- ADF and EBS, ICX SESSION is not valid
- Custom session state management
- Managing session in REST application after authentication with OpenID
- perl cgi session info not returned on new page
- How to Prevent Concurrent User Login with Angular + Dotnet core application?
- JDBC session for embedded jetty (Version above 9.4)
Related Questions in SESSION-HIJACKING
- Django session gets confused behind proxy, already logged in
- Avoiding session hijacking in ASP.NET
- writing a TCP connection hijacking
- PHP Protecting from Session Fixation/Hijacking
- How to integrate these pieces of code to protect against session hijacking
- Session hijacking in Java Spring
- PHP Checking User Agent and IP To Prevent Session Hijacking
- Does Storing Sessions In Database Prevent Hijacking/Fixation
- Protect authenticated PHP session from Session Hijacking through packet sniffing
- PHP session hijack
- CSP Violation error for blocked URI https://searches8704500-a.akamaihd.net
- Securing my web app with codeigniter: holes?
- Session Management with Windows Authentication
- Session Hijacking in practice
- suPHP Security With Sessions
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Excellent question. I just ran a test to confirm before i wrote this answer.
If i am 'Person A', and you are 'Person B', then this is what has to happen:
Note that Person B is still recognised as 'Person B' by the website, even though they are using Person A's session details. So if you have code that checks user permissions etc, then those checks are still done in the context of Person B.
This might sound like a huge issue, but it isn't really as long as the programmers are not careless. For instance, the only effect that Person B got in my test above was that they inherited the screen and grid layouts that Person A had set up, because we do our permission checks live (i.e. they are not cached). If you store sensitive data in the session then it could be a problem, but it is only a problem if they fields showing it are not permission checked every single time they are shown. It's also only an issue if the session for Person A hasn't expired.