Impersonate using Forms Authentication - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:12:13Z http://stackoverflow.com/feeds/question/1066275 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication 2 Impersonate using Forms Authentication SmilingRob 2009-06-30T21:52:30Z 2009-10-09T19:09:15Z <p>I have an ASP.NET site that must use Forms Authentication and not Windows Authentication to access a <code>ActiveDirectoryMembershipProvider</code>. The site must use forms because they need a designed input form instead of the browser authentication popup that Windows authentication uses.</p> <p>The site needs to impersonate the user logged in via Active Directory to access user specific files.</p> <p>However, the <code>WindowsIdentity.GetCurrent()</code> is not the same as the <code>HttpContext.Current.User.Identity</code> although my web.config contains:</p> <pre><code>&lt;authentication mode="Forms"&gt; &lt;forms loginUrl="login.aspx" timeout="480"/&gt; &lt;/authentication&gt; &lt;identity impersonate="true" /&gt; </code></pre> <p>I cannot use <code>LoginUser()</code> and the <code>WindowsIdentity.Impersonate()</code> because I need to impersonate as the AD user to get their specific permissions, and I don't know the user's password because Forms takes care of logging in.</p> <p>Is it possible maybe from the login.aspx.cs, to take the <code>System.Web.UI.WebControls.Login.Password</code>, then save the <code>LoginUser()</code> token in a session variable for <code>WindowsIdentity.Impersonate()</code> later? Or maybe a much more secure method of Impersonating the right way?</p> <p>I'm confused why Forms authentication can't automatically <code>&lt;identity impersonate="true" /&gt;</code></p> <p>I've read this <a href="http://msdn.microsoft.com/en-us/library/ms998351.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms998351.aspx</a> but it uses Windows Authentication.</p> http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication/1066398#1066398 0 Answer by AdamRalph for Impersonate using Forms Authentication AdamRalph 2009-06-30T22:24:23Z 2009-06-30T22:24:23Z <p>If your users are using IE then you can turn on integrated security for the website and your users will be authenticated silently (no login dialog, no login page). Your impersonation will then work. If you need to target other browsers then this may not work (the user will probably be presented with a login dialog).</p> <p>Your current impersonation will never work because your users are logging in using an account other than their domain account. You can't expect the site to impersonate a user which hasn't supplied his credentials. That would go against basic security principals.</p> http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication/1068780#1068780 1 Answer by tribus for Impersonate using Forms Authentication tribus 2009-07-01T12:04:05Z 2009-07-01T12:04:05Z <p><a href="http://stackoverflow.com/questions/1067263/asp-net-windows-authentication-logout/1067362#1067362">http://stackoverflow.com/questions/1067263/asp-net-windows-authentication-logout/1067362#1067362</a></p> http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication/1068809#1068809 0 Answer by kristof for Impersonate using Forms Authentication kristof 2009-07-01T12:10:29Z 2009-07-01T12:10:29Z <p>You may find this useful:</p> <ul> <li><a href="http://www.4guysfromrolla.com/articles/102208-1.aspx" rel="nofollow">how to create a login screen that allows Admin users to log in as another user in the user database</a></li> </ul> <p><strong>EDIT</strong></p> <p>On reading your question more closely, I am not sure if that approach would work with your scenario though; when you login using Forms Authentication and Impersonate Active Directory user</p> http://stackoverflow.com/questions/1066275/impersonate-using-forms-authentication/1545572#1545572 0 Answer by SmilingRob for Impersonate using Forms Authentication SmilingRob 2009-10-09T19:09:15Z 2009-10-09T19:09:15Z <p>"Forms" authentication cannot automatically impersonate.</p> <p>If you know the username and password you can hack an impersonation.</p>