Ask a Question related to ASP.NET Security, Design and Development.
-
JerryMorton233@mail.com #1
SSL Forms Login for multiple sites
Hi,
SSL newbie would love some advice :-)
I have a server that hosts several independant domains (using host
headers to differentiate them). Each domain runs an independant copy of
the same ASP.NET application - this app uses forms-based authentication
and a proprietary XML file on each site to authenticate users/passwords
(i.e. each site has it's own set of users).
I would like to implement SSL around the forms login page for each
site, to protect the login process only.
Since SSL is tied to a domain, is there a way I avoid having to buy an
SSL cert for EACH domain?
Thanks for any help!
Jerry
JerryMorton233@mail.com Guest
-
Strange problem with Forms authentication: After successfull login, login page is still displayed
Hi there I have a quite strange problem with my ASP.NET-Application. The application has being deployed one year ago and worked fine till last... -
Multiple Sites + Multiple Languages + Unicode with Adobe Contribute ?
Does Adobe Contributes allows you to maintan content in multiple language (with unicode support) over multiple web site (ie : www.myproduct.com,... -
Multiple users on multiple sites
If several users edit their own sites using one pc with one version of Contribute, for example in a community venue, is it possible to issue... -
Best way to set up multiple sub-sites?
I have a company intranet to set up, where each department has it's own subfolder under the root folder. Also, each department will have its own... -
Forms authentication and multiple login pages
Hi, I use a "forms based" security scheme. As I understood it, all I need is a "login" page (the unsecured one) and the rest. I have a little... -
Geir Aamodt #2
Re: SSL Forms Login for multiple sites
Jerry,
the short answer: No.
As you are saying, the SSL certificate are tied to one domain and this is
done for security reasons. Otherwise, you could have certificates saying
that
"I am site Y", when the site in reality is site X.
What you could try to do (depending on your application/system) is to create
a
common login service which, after successful login, redirects the users to
the correct
domain.
This would of course require a new "logon.yourdomain.com" which would handle
this.
--
Best regards,
Geir Aamodt
geir.aamodt(AT)bekk.no
<JerryMorton233@mail.com> wrote in message
news:1108813638.870391.7790@c13g2000cwb.googlegrou ps.com...> Hi,
> SSL newbie would love some advice :-)
>
> I have a server that hosts several independant domains (using host
> headers to differentiate them). Each domain runs an independant copy of
> the same ASP.NET application - this app uses forms-based authentication
> and a proprietary XML file on each site to authenticate users/passwords
> (i.e. each site has it's own set of users).
>
> I would like to implement SSL around the forms login page for each
> site, to protect the login process only.
>
> Since SSL is tied to a domain, is there a way I avoid having to buy an
> SSL cert for EACH domain?
>
> Thanks for any help!
> Jerry
>
Geir Aamodt Guest
-
JerryMorton233@mail.com #3
Re: SSL Forms Login for multiple sites
Hi,
I thought this would be the case. I was thinking about the "common
login" process - has anyone done this? I just wonder how the system
will react i.e. when a cookie generated by a forms-authentication page
at "https://logon.yourdomain.com" is then passed back for use under
"http://www.myoriginaldomain.com"? I think there's a way of
manipulating the domain name in the cookie - but what about the "https"
-> "http" bit - does that still form part of the cookie validation?
I was thinking that if I buy a "shared" ("wildcard"?) SSL cert, I can
make something work? i.e. [url]www.adomain.com[/url] uses web.config to redirect
unauthenticated users to "https://adomain.yourdomain.com/login.aspx"
which ACTUALLY maps to a page under the "adomain" application (e.g.
"http://www.adomain.com/adomainloginfolder/login.aspx"). I think I
still have the same cookie problems though? Although this would let me
use the correct "user database" for each app more easily.
Maybe some kind person out there has tried this? :-)
JerryMorton233@mail.com Guest



Reply With Quote

