Secure only Login.aspx for a site - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T00:28:02Z http://stackoverflow.com/feeds/question/134988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134988/secure-only-login-aspx-for-a-site 1 Secure only Login.aspx for a site SharePoint Newbie 2008-09-25T18:14:59Z 2008-09-30T16:40:52Z <p>Hi,</p> <ol> <li>Is it possible to secure only the Login.aspx page (and the postback) and not the whole site in IIS?</li> <li>We are looking to do this specifically with a SharePoint site running Forms Based Authentication against our Active Directory.</li> <li>Links to this will be helpful.</li> </ol> <p>This is what we have done so far: 1. Setup SharePoint to use FBA against AD. 2. Moved Login Page to Secure/Login.aspx 3. Set the appropriate Login url in web.config as https://..../Secure/Login.aspx</p> <p>This is not working and help is needed here. However even if this works, how do we get the user back to http from https?</p> <p>Kind regards, Ashish Sharma</p> http://stackoverflow.com/questions/134988/secure-only-login-aspx-for-a-site/135025#135025 2 Answer by Dan Williams for Secure only Login.aspx for a site Dan Williams 2008-09-25T18:22:45Z 2008-09-25T18:22:45Z <p>There's not a whole lot of point. If the only thing that's encrypted is the Login.aspx page, that would mean that someone could sniff all the traffic that was not sent through the login page.</p> <p>Which might prevent people from getting user:pass, but all your other data is exposed.</p> http://stackoverflow.com/questions/134988/secure-only-login-aspx-for-a-site/135180#135180 0 Answer by AviD for Secure only Login.aspx for a site AviD 2008-09-25T18:47:49Z 2008-09-25T18:47:49Z <p>Besides all the data which is exposed, and the user's operation which can be changed en route, the user's session id (or other authentication data) is sent in the clear. This means that an attacker can steal your cookie (...) and impersonate you to the system, even without getting your password. (If I remember correctly SPSv.3 also supports builtin password changing module...)<br /> So I would say that this is not a Great Idea, unless you dont care about that system very much anyway.... But then, why bother with authentication at all? just make it anonymous?</p> http://stackoverflow.com/questions/134988/secure-only-login-aspx-for-a-site/136649#136649 0 Answer by spoon16 for Secure only Login.aspx for a site spoon16 2008-09-25T22:40:39Z 2008-09-25T22:40:39Z <p>Why not just use NTLM authentication on the IIS website, won't that work?</p> http://stackoverflow.com/questions/134988/secure-only-login-aspx-for-a-site/153918#153918 0 Answer by Abs for Secure only Login.aspx for a site Abs 2008-09-30T16:40:52Z 2008-09-30T16:40:52Z <p>I agree with AviD and Dan Williams that securing only the login page isn't a great idea because it exposes other data after leaving the password page. However, you can require SSL for only the login.aspx page via the IIS Manger. If you navigate to the login.aspx page in IIS Manager (I believe it's under <code>/_layouts</code>), you can right-click on the individual file and select <code>Properties</code>. From there, go to the <code>File Security</code> tab and click on the <code>Edit...</code> button under <code>Secure communications</code>. There, you can check the <code>Require secure channel (SSL)</code> box, and SSL will be required for that page only.</p> <p>I'm not positive about getting the user back to http from there, but I believe its default behavior is to send you to the requested page if the login is successful. If not, I would think you could customize where the login page sends you on a successful login.</p>