Live data from Hacker News

Ask HN: How do you secure yourself on public WiFi?

news.ycombinator.com

1–10 of 76 posts

Ask HN: How do you secure yourself on public WiFi?

#1
Following on from the FireSheep post (http://news.ycombinator.com/item?id=1827928) how do HNers secure their InterWebs usage whilst on Public WiFi ?

It seems like VPN is a good way to go - I'm particularly interested to hear whether anyone can recommend any good VPN providers ?

The following were mentioned in the FireSheep post:

  WiTopia (http://www.witopia.net)
  OpenVPN (http://openvpn.net/)
Does anyone have any experience with them or others ?

Re: Ask HN: How do you secure yourself on public WiFi?

#3
What I do:

I have a reachable personnal computer with an ssh server. Then on my local machine I do:

    ssh -D 9050 username@host
Then in your web browser you should simply use localhost:9050 as SOCKS proxy. Now you're safe about the WiFi sniffers.

I made a short post about this:

http://goo.gl/zTQM

Re: Ask HN: How do you secure yourself on public WiFi?

#4

What I do: I have a reachable personnal computer with an ssh server. Then on my local machine I do: ssh -D 9050 username@host Then in your web browser you should simply use localhost:9050 as SOCKS proxy. Now you're safe about the WiFi sniffers. I made a short post about this: http://goo.gl/zTQM

Also, if you use firefox, there is a handy addon called "multiproxy switch" which makes handling lots of different proxies much easier.

Re: Ask HN: How do you secure yourself on public WiFi?

#6
post #4

What I do: I have a reachable personnal computer with an ssh server. Then on my local machine I do: ssh -D 9050 username@host Then in your web browser you should simply use localhost:9050 as SOCKS proxy. Now you're safe about the WiFi sniffers. I made a short post about this: http://goo.gl/zTQM

Also, if you use firefox, there is a handy addon called "multiproxy switch" which makes handling lots of different proxies much easier.

Thank you. I didn't knew this one. It will be very useful.

Re: Ask HN: How do you secure yourself on public WiFi?

#7

What I do: I have a reachable personnal computer with an ssh server. Then on my local machine I do: ssh -D 9050 username@host Then in your web browser you should simply use localhost:9050 as SOCKS proxy. Now you're safe about the WiFi sniffers. I made a short post about this: http://goo.gl/zTQM

Great - Just tested, and it seems to work well (fooling FireSheep).

I downloaded "ProxySwitcher" for Chrome for easy switching between the proxy and direct connection:

https://chrome.google.com/extensions/detail/caehdcpeofiiigpd...

Re: Ask HN: How do you secure yourself on public WiFi?

#8
I loaded Tomato on my Linksys router, then enabled SSH. I proxy through that when on public wifi. This is the best method for me because my Linksys router is always on and uses very little power.

It's also setup so I can use remote desktop through the proxy to my desktop at home. I wrote up some instructions on how I did it here:

http://ronnieroller.com/articles/rdp_over_ssh_with_a_linksys...

Re: Ask HN: How do you secure yourself on public WiFi?

#10
Easy, I open up a terminal and type:

    start_vpn
It's a script which fires up an openvpn connection to a vps I have.

Getting openvpn working took about a day of hacking around on my vps and my mac. (just read the openvpn tutorial and follow the steps.) I still haven't gotten openvpn working on Windows but it's not something I've never needed.

Post reply on HN