Tagged Questions

Forms Authentication is a built-in and extensible system for authenticating users in an ASP.Net application that also maintains that authenticated session via a ticket (often stored as a cookie or query string parameter).

learn more… | top users | synonyms

68
votes
3answers
18k views

ASP.NET MVC - Set custom IIdentity or IPrincipal

I need to do something fairly simple: in my ASP.NET MVC application, I want to set a custom IIdentity / IPrincipal. Whichever is easier / more suitable. I want to extend the default so that I can call ...
41
votes
3answers
14k views

How to redirect to a dynamic login URL in ASP.NET MVC

I'm creating a multi-tenancy web site which hosts pages for clients. The first segment of the URL will be a string which identifies the client, defined in Global.asax using the following URL routing ...
40
votes
11answers
29k views

How to get current user in Asp.Net MVC

In forms model, I used to get current logged in user by Page.CurrentUser How do I get current user inside a controller class in ASP.NET MVC?
21
votes
15answers
14k views

FormsAuthentication.SignOut() does not log the user out

Smashed my head against this a bit too long. How do I prevent a user from browsing a site's pages after they have been logged out using FormsAuthentication.SignOut? I would expect this to do it: ...
17
votes
3answers
8k views

jQuery Forms Authentication with ASP.NET MVC

Is it possible to use a jQuery ajax call to perform Forms Authentication with ASP.NET MVC? I've been unable to find any such examples. More specifically, how do I set the auth cookie on the page ...
16
votes
4answers
9k views

Storing more information using FormsAuthentication.SetAuthCookie

I am using aspx and c# for a setting a authentication cookie for a login. FormsAuthentication.SetAuthCookie(UserName, True) I want to store more information in the same cookie. Can I add values to ...
16
votes
4answers
10k views

what is ASPXAUTH cookie?

While working with ASP.Net Forms Authentication I came across the .ASPXAUTH cookie. I have a couple questions: What is the purpose of this cookie? What is the location of this cookie?
15
votes
1answer
2k views

How can I unit test my ASP.NET MVC controller that uses FormsAuthentication?

I'm working with a ASP.NET MVC solution in a test driven manner and I want to login a user to my application using forms authentication. The code I would like to end up with in the controller looks ...
13
votes
6answers
2k views

Can some hacker steal the cookie from a user and login with that name on a web site?

Reading this question different users get the same cookie value in aspxanonymous and search for a solution, I start thinking, if it is possible for some one to really steal the cookie with some way, ...
13
votes
1answer
7k views

AuthenticateRequest event

Q1 - To my understanding FormsAuthenticationModule is subscribed to AuthenticateReuqest event, and thus only after this event is fired, is FormsAuthenticationModule called. But the following quotes ...
12
votes
5answers
696 views

Why is ASP.NET forms authentication setting cookies on a static image request?

I have an ASP.NET (MVC) website that is serving static content (images) as well as dynamic content from the same domain. The site uses forms auth, and has a login controller. There have been some very ...
12
votes
4answers
3k views

MVC - How to store/assign roles of authenticated users

I am upgrading a site to use MVC and am looking for the best way to setup Authenication. At this point i have the login working off of Active Directory, validating a username and password and then ...
11
votes
7answers
3k views

Forms authentication: disable redirect to the login page

I have an application that uses ASP.NET Forms Authentication. For the most part, it's working great, but I'm trying to add support for a simple API via an .ashx file. I want the ashx file to have ...
11
votes
8answers
2k views

How secure is basic forms authentication in asp.net?

Imagine that you have a simple site with only 2 pages: login.aspx and secret.aspx. Your site is secured using nothing but ASP.net forms authentication and an ASP.net Login server control on ...
10
votes
3answers
244 views

How to initialize information on authorization

Ok, so this seems like a common need. A little googling finds a lot of ways to do this. I'm interested in the most "mvc correct" way to do it. I have, in the upper right hand corner of my app, a ...
10
votes
5answers
888 views

Can I impersonate a client authenticated with forms auth and establish a trusted connection to SQL Server?

Here is what I've been trying to do Build an ASP.NET MVC 3 application with forms authentication and active directory membership. The web server and database are different physical servers hence a ...
10
votes
7answers
5k views

Mixing Forms authentication with Windows authentication

I have an (ASP.NET 3.5) intranet application which has been designed to use forms authentication (along with the default aspnet membership system). I also store additional information about users in ...
10
votes
3answers
20k views

Why is <deny users=“?” /> included in the following example?

(?) wildcard represents unauthenticated users while (*) represents all users, authenticated and unauthenticated. My book shows the following example of URL authorization: <authorization> ...
9
votes
2answers
2k views

ASP.NET MVC - Authenticate users against Active Directory, but require username and password to be inputted

I'm developing a MVC3 application that will require a user to be authenticated against an AD. I know that there is the option in MVC3 to create an Intranet Application that automatically authenticates ...
9
votes
1answer
2k views

What is a very simple authentication scheme for Sinatra/Rack

I am busy porting a very small web app from ASP.NET MVC 2 to Ruby/Sinatra. In the MVC app, FormsAuthentication.SetAuthCookie was being used to set a persistent cookie when the users login was ...
9
votes
2answers
10k views

Passing FormsAuthentication cookie to a WCF service

I have a website that talks to a remote WCF web service. Both use the same custom FormsAuthentication Provider. I would like to authenticate with the WCF service impersonating the user currently ...
9
votes
2answers
687 views

What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?

What is the purpose/meaning of the Version property on a FormsAuthenticationTicket?
8
votes
2answers
247 views

Sessions mixed up on asp.net site

I am analyzing a problem from an old asp.net site made by one of my colleagues who left the company some months ago. The problem is that we a few times have expierenced that two users sessions are ...
8
votes
4answers
835 views

Thread.CurrentPrincipal claims incorrectly to be anynomous

I'm seeing requests on my server that appear to be made by an anynomous client, although I'm certain they were made by an authenticated user - I have fiddler logs showing that the client sent valid ...
8
votes
2answers
3k views

How do I implement custom Principal and Identity in ASP.NET MVC?

I want to store extra information in the authenticated user so that I can have it easily accessible (like User.Identity.Id, for example), instead of just the name, since I'm planning on having that ...
8
votes
4answers
3k views

Where to store logged user information on ASP.NET MVC using Forms Authentication?

I'm using ASP.NET MVC and Forms Authentication on my application. Basically I use FormsAuthentication.SetAuthCookie to login and FormsAuthentication.SignOut to logout. In the ...
8
votes
2answers
5k views

How to override/change FormsAuthentication LoginUrl in certain cases

Is there a way to dynamically change the LoginUrl of FormsAuthentication? What I have is the whole site protected by FormsAuth, but for some pages in a sub folder, I'd like to take the user to ...
8
votes
5answers
2k views

Forms Authentication across Sub-Domains

Is it possible to authenticate users across sub-domains when the authentication takes place at a sub-domain instead of the parent domain? For example: User logs into site1.parent.com, and then we ...
8
votes
7answers
4k views

Extending Forms Authentication Timeout When Making AJAX Calls With jQuery

I'm looking to rewrite a pretty intensive CRUD type ASP.NET page to utilize ajax calls (specifically jQuery ajax). My concern in doing this is that the user may be on this page longer than the forms ...
7
votes
2answers
271 views

In ELMAH with MVC 3, How can I hide sensitive form data from the error log?

Here is the scenario... User types his username. Types an "incorrect" password. Both username and password values are being passed to the Elmah error log via the ...
7
votes
2answers
7k views

ASP.NET MVC 3 Authentication/Authorization

I am very new to ASP.NET MVC 3 (and MVC in general for that matter). In ASP.NET Web Forms, I did authentication using Principals and Identities. Is this the recommended way to do it in MVC or is ...
7
votes
2answers
174 views

Control values lost when authentication session times out in ASP.NET

I have a ASP.NET website which uses forms authentication. The timeout is twenty minutes. I have noticed that if a user half completes a form, and is then timed out, they are redirected to the login ...
7
votes
6answers
2k views

Forms Authentication Ignoring Default Document

I have spent a day and a half trying to resolve this issue. Bascially have an ASP.net website with Forms Authentication on IIS7 using Framework 4.0. The Authorization stuff seems to be working ...
7
votes
2answers
1k views

Multiple websites, Single sign-on design

I have a question. A client I have been doing some work recently has a range of websites with different login mechanisms. He is looking to slowly migrate to a single sign-on mechanism for his websites ...
7
votes
4answers
5k views

Asp.net forms authentication and multiple domains

I have two domains, domain1.com and domain2.com pointing at the same asp.net website which uses asp.net build in form authentication. The problem is that even if the domains point to the same website ...
7
votes
5answers
4k views

Asp.net forms authentication cookie not honoring timeout with IIS7

Authentication cookies seem to timeout after a short period of time (a day or so). I am using Forms Authentication and have the timeout="10080" with slidingExpiration="false" in the web.config. With ...
7
votes
4answers
7k views

ASP.NET MVC Forms Authentication + Authorize Attribute + Simple Roles

I'm trying to add simple Authentication and Authorization to an ASP.NET MVC application. I'm just trying to tack on some added functionality to the basic Forms Authentication (due to simplicity and ...
7
votes
6answers
4k views

Impersonate using Forms Authentication

I have an ASP.NET site that must use Forms Authentication and not Windows Authentication to access a ActiveDirectoryMembershipProvider. The site must use forms because they need a designed input form ...
7
votes
2answers
2k views

Relationship between MembershipUser and IPrincipal object

I assume MembershipUser object and object implementing IPrincipal interface are “connected” in a sense that when certain information in one of the objects changes, the other object is also changed ...
7
votes
1answer
3k views

How do I keep my Login.aspx page's ReturnUrl parameter from overriding my ASP.NET Login control's DestinationPageUrl property?

I'm using the ASP.NET Login Controls and Forms Authentication for membership/credentials for an ASP.NET web application. I've got pages such as PasswordRecovery.aspx that are accessable to only ...
6
votes
1answer
123 views

Can an ASP.NET 4.0 application within an ASP.NET 2.0 site use the same Forms Authentication cookie?

See update at bottom of question I have an ASP.NET 2.0 web application (say https://mysite.somedomain.com/) which uses forms authentication. I wish to integrate an ASP.NET 4.0 web app within this ...
6
votes
1answer
105 views

FormsAuthentication - handling a change of username

My ASP.NET MVC web application allows administrators to change their own, or other users' usernames. Users are logged in by calling FormsAuthentication.SetAuthCookie(userName [string], ...
6
votes
3answers
215 views

ASP.NET site auto-login during development

While developing an ASP.NET site, is the a way to setup automatic login? For example, each time I build the site and run it, I have to login again. I don't want to disable security entirely, but I ...
6
votes
2answers
492 views

ASP.NET Authentication - One login system for multiple apps

We have a server with lets say 5-10 internal ASP.NET (MVC) applications running in separate application pools as separate websites (on different ports and/or subdomains). I know nothing about the ...
6
votes
3answers
2k views

Forms Authentication ReturnUrl and subdomain for single sign-on

I have a domain http://abc.com and a subdomain http://sub.abc.com. I'm implementing single sign-on between the two sites by sharing the forms authentication cookie. This is implemented by having both ...
6
votes
4answers
6k views

Configuring Spring Security 3.x to have multiple entry points

I have been using Spring Security 3.x for handling user authentication for my projects, and so far, it has worked flawlessly. I recently received the requirements for a new project. In this project, ...
6
votes
3answers
632 views

asp.net 'Remember me' not working anymore with forms authentication

I have two websites with self written membership providers that are hostet on the same server in the same Web in different web-applications and different application pools. Formerly I had the ...
6
votes
1answer
729 views

ASP.NET MVC forces an AJAX request be redirected to the login page when the FormsLogin session is no longer active

I have some AJAX calls that render PartialViewResults via the jQuery.AJAX method. This works great, I get my views rendered exactly the way I want. The problem arises when I leave the page up for a ...
6
votes
2answers
417 views

ASP.NET Forms Authentication and a “No Authentication” subfolder

Is it possible to disable all authentication in a subfolder of a web site that is Forms Authenticated? How do you accomplish this?
6
votes
2answers
600 views

MVC2 Apps (and others) sharing WCF services and authentication

I've seen several similar scenarios explained here but not my particular one. I wonder if someone could tell me which direction to go in? I am developing two (and more later) MVC2 apps. There will ...

1 2 3 4 5 27