Web Server Authentication Is Still Broken
1–8 of 8 posts
Re: Web Server Authentication Is Still Broken
#2Re: Web Server Authentication Is Still Broken
#3Ok, I am building a new site. Which, if any, of these approaches are viable for me to implement today in an easy and reliable way?
Re: Web Server Authentication Is Still Broken
#4Ok, I am building a new site. Which, if any, of these approaches are viable for me to implement today in an easy and reliable way?
None, because all of these approaches require browser support to be at all usable.
Let's say I have a small captive group of more savvy users--just the site admins, for instance. Are any of these approaches worth looking into for them?
Re: Web Server Authentication Is Still Broken
#5Earlier quoted context omitted.
None, because all of these approaches require browser support to be at all usable.
That's what I was afraid of. Let's say I have a small captive group of more savvy users--just the site admins, for instance. Are any of these approaches worth looking into for them?
Re: Web Server Authentication Is Still Broken
#6Earlier quoted context omitted.
None, because all of these approaches require browser support to be at all usable.
That's what I was afraid of. Let's say I have a small captive group of more savvy users--just the site admins, for instance. Are any of these approaches worth looking into for them?
Re: Web Server Authentication Is Still Broken
#7Earlier quoted context omitted.
That's what I was afraid of. Let's say I have a small captive group of more savvy users--just the site admins, for instance. Are any of these approaches worth looking into for them?
For admins, put the site behind a firewall with only SSH ports open, make them SSH into it, set up a SOCKS proxy, and connect through localhost.
Re: Web Server Authentication Is Still Broken
#8Earlier quoted context omitted.
That's what I was afraid of. Let's say I have a small captive group of more savvy users--just the site admins, for instance. Are any of these approaches worth looking into for them?
For admins, put the site behind a firewall with only SSH ports open, make them SSH into it, set up a SOCKS proxy, and connect through localhost.
ssh -L1234:localhost:80 adminhost.yourdomain.com
then hit http://localhost:1234/ in your browser to reach port 80 on adminhost.yourdomain.com.
Simple and clear. The user isn't accidentally going to do their personal browsing over the admin network.
Make sure that the server on adminhost is only listening on localhost (and/or that port 80 is firewalled off to the outside world)
This is what I do everywhere I need to trust a http interface.
I even make customers do it some places (e.g. if they have access to VNC for KVM guests) but it does require a certain caliber of user.